Range.lbound
Returns a range pointing to all elements that are not less than a given key. Applicable to RedBlackTreeRange only.
Arguments
key
is the lower bound, inclusive.
Return values
The resulting
range
.
Complexity
O(log(treeSize))
Example
Output:
{ key: 2; value: "TWO"; }
{ key: 10; value: "TEN"; }
{ key: 50; value: "FIFTY"; }