class Hamster::Trie

def key?(key)

Returns true if the given key is present in the trie.
def key?(key)
  !!get(key)
end