make-eqv-hashtable[procedure] make-eq-hashtable [initial-size]
[procedure] make-eqv-hashtable [initial-size]
R6RS: Creates a mutable hashtable using eq? or eqv? as
a comparison procedure, respectively.
Note: The hash functions for eq and eqv-hashtables are intentionally hidden
in R6RS (See R6RS Rationale document). Even hashtable-hash-function
cannot access them. Applying hashtable-hash-function on eq or eqv-hashtables
yields #f.
See also make-hashtable.
|