EBTree64.update

Sets the key of node to key, keeping the tree sorted.

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

Parameters

node Node

node to update key

key Key

new key for node

Return Value

Type: Node*

updated node

Meta