BTreeMapImplementation.remove

Removes the element with the given key from the BTreeMap.

struct BTreeMapImplementation(KeyType, ValueType, int tree_degree)
package
bool
remove
(
KeyType key
)

Parameters

key KeyType

key associated with the element to delete.

Return Value

Type: bool

true if the element with the given key was found and deleted, false otherwise.

Meta