Template with keyless methods.
Template parameters: Node = tree node struct type; expected to be an instance of the Node struct template in ocean.util.container.ebtree.model.Node.
eb_first = eb_node* ( eb_root* root ); returns the first node eb_last = eb_node* ( eb_root* root ); returns the last node
foreach iterator over nodes in the tree. Any tree modification is permitted during iteration.
foreach_reverse iterator over nodes in the tree. Any tree modification is permitted during iteration.
Removes a node from the tree.
See Implementation
Template with keyless methods.
Template parameters: Node = tree node struct type; expected to be an instance of the Node struct template in ocean.util.container.ebtree.model.Node.
eb_first = eb_node* ( eb_root* root ); returns the first node eb_last = eb_node* ( eb_root* root ); returns the last node