class Hamster::Hash

def each

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