AxHashMap<K, V> is a thin newtype wrapper around HashMap<K, V> that
adds the familiar ::new() / ::with_capacity() constructor syntax.
Every method on hashbrown::HashMap is accessible via Deref.
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.
Drop-in hashbrown::HashSet with AxHasher as the default hasher.
Use this alias when maximum third-party compatibility matters (e.g. Serde
#[derive]). Every method on hashbrown::HashSet is available directly.