module Hamster::List

def break(&block)

def break(&block)
  return span unless block_given?
  span { |item| !yield(item) }
end