pub type HashMap<K, V> = HashMap<K, V, BuildHasherDefault<FxHasher>>;
Expand description
A [HashMap
][hashbrown::HashMap] implementing aHash, a high
speed keyed hashing algorithm intended for use in in-memory hashmaps.
aHash is designed for performance and is NOT cryptographically secure.
Aliased Typeยง
struct HashMap<K, V> { /* private fields */ }