Handbook
Glossary
heap-size ( heap -- n )
Factor handbook
»
The language
»
Collections
»
Heaps
Prev:
heap-empty? ( heap -- ? )
Next:
heap-peek ( heap -- value key )
Vocabulary
heaps
Inputs
heap
a
heap
Outputs
n
an
integer
Word description
Returns the number of key/value pairs in the heap.
Definition
IN:
heaps
GENERIC:
heap-size
( heap -- n )
Methods
USING:
accessors
heaps
heaps.private
sequences
;
M:
heap
heap-size
data>>
length
;
inline