Handbook
Glossary
get-largest ( node -- node )
Vocabulary
trees
.
splay
.
private
Inputs
node
an
object
Outputs
node
an
object
Definition
USING:
accessors
kernel
;
IN:
trees.splay.private
:
get-largest
( node -- node )
dup
[
dup
right>>
[
nip
get-largest
]
when*
]
when
;