BBTree.lookup

Gets the value corresponding to the given key. Since a GTree is automatically balanced as key/value pairs are added, key lookup is very fast.

class BBTree
void*
lookup
(
void* key
)

Parameters

key void*

the key to look up.

Return Value

Type: void*

the value corresponding to the key, or NULL if the key was not found.

Meta