module Hamster::Enumerable

def find

def find
  return nil unless block_given?
  each { |item| return item if yield(item) }
end