hash-deleted+ ( hash -- ) (original) (raw)

hash-deleted+ ( hash -- )

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 ;

IN: hashtables.private

: hash-deleted+ ( hash -- )
[ 1 fixnum+fast ] change-deleted drop ; inline