- (make-hash-table [TEST HASH SIZE] [#:test TEST] [#:hash HASH] [#:size SIZE] [#:initial INITIAL] [#:min-load MIN-LOAD] [#:max-load MAX-LOAD] [#:weak-keys WEAK-KEYS] [#:weak-values WEAK-VALUES])procedure
Returns a new HASH-TABLE with the supplied configuration.
- TEST
- The equivalence function.
- HASH
- The hash function.
- SIZE
- The expected number of table elements.
- INITIAL
- The default initial value.
- MIN-LOAD
- The minimum load factor. A flonum in (0.0 1.0).
- MAX-LOAD
- The maximum load factor. A flonum in (0.0 1.0).
- WEAK-KEYS
- Use weak references for keys. (Ignored)
- WEAK-VALUES
- Use weak references for values. (Ignored)
Please note that hash tables are not guaranteed to compare equal? to each other, even if they contain exactly the same key/value pairs.