makeBTreeMap

Constructor-like method. Constructs the BTreeMap and initializes it.

BTreeMap!(KeyType, ValueType, tree_degree)
makeBTreeMap
(
KeyType
ValueType
int tree_degree
)

Parameters

KeyType

type of the key.

ValueType

type of the value to store.

tree_degree

degree of the tree (refer to the documentation)

Return Value

Type: BTreeMap!(KeyType, ValueType, tree_degree)

empty BTreeMap which maps KeyType to ValueType of a given degree which sues memManager allocation strategy.

Meta