IntMap

Type Alias IntMap 

Source
pub type IntMap<K, V> = HashMap<K, V, BuildNoHashHasher<K>>;
Expand description

A version of HashMap<K, V> using the identity hash function, which is valid for any key type that can be converted to a u64 without truncation.

Aliased Typeยง

pub struct IntMap<K, V> { /* private fields */ }