pub type FastMap<K, V> = HashMap<K, V, FxBuildHasher>;Expand description
Drop-in HashMap alias using the fast hasher. Same API as
std::collections::HashMap; construct with FastMap::default().
Aliased Type§
pub struct FastMap<K, V> { /* private fields */ }