Type Alias gluon_base::fnv::FnvMap
source · pub type FnvMap<K, V> = HashMap<K, V, BuildHasherDefault<FnvHasher>>;
Expand description
Non-crypto HashMap
using Fnv Hasher
The default hashing implementation in std::collections
uses SipHasher
since gluon doesn’t need the cryptographic guarantee provided by SipHasher
,
we’ve opted for the faster fnv hash.
Aliased Type§
struct FnvMap<K, V> { /* private fields */ }