EBTree64.add

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

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

Parameters

key Dual32Key

value to add

Return Value

Type: Node*

pointer to newly added node

Meta