module Hamster::Enumerable

def to_a

def to_a
  reduce([]) { |a, item| a << item }
end