KeylessMethods.last

template KeylessMethods(Node, alias eb_first, alias eb_last)
Node*
last
()
out (node) { if (this.length) { assert (node, typeof(this).stringof ~ ".last: got a null node but the tree is not empty"); } else { assert (!node, typeof(this).stringof ~ ".last: got a node but the tree is empty"); } }

Return Value

Type: Node*

pointer to node with highest value in the tree

Meta