BTreeMapImplementation.get

Searches the tree for the element with the given key and returns pointer to it's value, or null if not found.

  1. ValueType get(KeyType key, bool found_element)
  2. ValueType* get(KeyType key)
    struct BTreeMapImplementation(KeyType, ValueType, int tree_degree)
    package
    ValueType*
    get
    (
    KeyType key
    )

Parameters

key KeyType

key to find in the tree.

Return Value

Type: ValueType*

pointer to the value associated with the key, or null if not found.

Meta