class Hamster::Set

def each

def each
  return self unless block_given?
  @trie.each { |entry| yield(entry.key) }
end