EBTree64.add

Adds a new node to the tree, automatically inserting it in the correct location to keep the tree sorted.

  1. Node* add(Key key)
    class EBTree64(bool signed = false)
    add
    out (node_out) { assert (node_out !is null); }
  2. Node* add(Dual32Key key)

Parameters

key Key

key of node to add

Return Value

Type: Node*

pointer to the newly added node

Meta