BTreeMapImplementation.get

Searches the tree for the element with the given key and returns its value if found.

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

Parameters

key KeyType

key to find in the tree.

Return Value

Type: ValueType

value associated with the key, or ValueType.init if not found.

Meta