hash-deleted+ ( hash -- ) (original) (raw)
Vocabulary
hashtables.private
Inputs
hash | a hashtable |
---|
Outputs
None
Word description
Called to increment the deleted entry counter when an entry is removed with delete-at
Side effects
Modifies hash
Definition
USING: accessors kernel math.private ;
: hash-deleted+ ( hash -- )
[ 1 fixnum+fast ] change-deleted drop ; inline