1 2 3 4 5
use dashmap::DashMap; use nohash_hasher::BuildNoHashHasher; /// Fast integer [`DashMap`] pub type IntDashMap<K, V> = DashMap<K, V, BuildNoHashHasher<K>>;