Handbook
Glossary
pop-tree-right ( tree -- node/f )
Binary search trees
Prev:
pop-tree-left ( tree -- node/f )
Next:
slurp-tree-left ( tree quot: ( ... entry -- ... ) -- ... )
Vocabulary
trees
Inputs
tree
a
tree
Outputs
node/f
a
pair
or
f
Word description
Removes and returns a key-value mapping associated with the highest key in this map, or
f
if the map is empty.
See also
pop-tree-left
Definition
USING:
kernel
trees.private
;
IN:
trees
:
pop-tree-right
( tree -- node/f )
dup
last-node
pop-tree-extremity
;