class Hamster::Set

def to_list

def to_list
  reduce(EmptyList) { |list, item| list.cons(item) }
end