Method: Decode::Trie#lookup

Defined in:
lib/decode/trie.rb

#lookup(path) ⇒ Object

Lookup the values at the specified path.



101
102
103
# File 'lib/decode/trie.rb', line 101

def lookup(path)
  @root.lookup(path)
end