hash@ ( key array -- i )


Vocabulary
hashtables.private

Inputs
keya key
arraythe underlying array of a hashtable


Outputs
ithe index to begin hashtable search


Word description
Computes the index to begin searching from the hashcode of the key. Always outputs an even value since keys are stored at even indices of the underlying array.

Definition