pub type HashMap<K, V> = RawHashMap<K, V, BuildHasherDefault<AxHasher>>;Expand description
Drop-in hashbrown::HashMap with AxHasher as the default hasher.
Use this alias when maximum third-party compatibility matters (e.g. Serde
#[derive]). Every method on hashbrown::HashMap is available directly.
Aliased Typeยง
pub struct HashMap<K, V> { /* private fields */ }