1 2 3 4 5 6 7
//! Common type aliases used in many modules internally. use dashmap::DashMap; use nohash_hasher::BuildNoHashHasher; /// Fast integer [`DashMap`] pub type IntDashMap<K, V> = DashMap<K, V, BuildNoHashHasher<K>>;