Expand description

A library for fallible hash collections.

Modules

A hash map implemented with quadratic probing.

A hash set implemented as a HashMap where the value is ().

Structs

The error type for allocation failure.

This hashing algorithm was extracted from the Rustc compiler. This is the same hashing algoirthm used for some internal operations in FireFox. The strength of this algorithm is in hashing 8 bytes at a time on 64-bit platforms, where the FNV algorithm works on one byte at a time.

A hash map implemented with quadratic probing.

A hash set implemented as a HashMap where the value is ().

Type Definitions

A builder for default Fx hashers.