RedBlackTree.first
Returns the first entry of the tree.
Arguments
None
Return values
{ key: Key; value: Value; }
structure is the first entry. It will be an entry with the smallest key because a tree is always sorted.
Complexity
Constant
Example
Output:
{ key: -25; value: "element"; }