Crate hashbrown

source ·
Expand description

A high-performance replacement for the standard library HashMap.

The API of this crate mirrors that of the hash table implementation in std::collections.

Modules

A hash map implemented with linear probing and Robin Hood bucket stealing.
A hash set implemented as a HashMap where the value is ().

Structs

A high-performance hash map which uses quadratic probing and SIMD.
A hash set implemented as a HashMap where the value is ().