RedBlackTree.rbound
Returns a range pointing to all elements with keys less than a given key.
Arguments
The bound
key
.
Return values
range
is the resulting RedBlackTreeRange.
Complexity
O(log(size))
Example
Output:
{ key: -25; value: "element"; }
{ key: 0; value: "ZERO"; }
{ key: 19; value: "nineteen"; }