Handbook
Glossary
?grow-hash ( hash -- )
Vocabulary
hashtables
.
private
Inputs
hash
a
hashtable
Outputs
None
Word description
Enlarges the capacity of a hashtable if it is almost full. User code does not need to call this word directly.
Side effects
Modifies
hash
Definition
USING:
kernel
;
IN:
hashtables.private
:
?grow-hash
( hash -- )
dup
hash-large?
[
grow-hash
]
[
drop
]
if
;
inline