Method: PEROBS::BTree#get
- Defined in:
- lib/perobs/BTree.rb
#get(key) ⇒ Integer or nil
Retrieve the value associated with the given key. If no entry was found, return nil.
232 233 234 |
# File 'lib/perobs/BTree.rb', line 232 def get(key) @root.get(key) end |