IdHashMap

Type Alias IdHashMap 

Source
pub type IdHashMap<V> = HashMap<IdHash, V, BuildHasherDefault<IdHashHasher>>;
Expand description

A HashMap using IdHash keys with an identity hasher.

This avoids redundant re-hashing since IdHash already contains a well-distributed hash value.

Aliased Typeยง

pub struct IdHashMap<V> { /* private fields */ }