Type Alias ahash::HashMap

source ·
pub type HashMap<K, V> = HashMap<K, V, RandomState>;
Expand description

Type alias for HashMap<K, V, ahash::RandomState>

Aliased Type§

struct HashMap<K, V> {
    base: HashMap<K, V, RandomState>,
}

Fields§

§base: HashMap<K, V, RandomState>