Skip to main content

InternedPathMap

Type Alias InternedPathMap 

Source
pub type InternedPathMap<V> = HashMap<InternedPath, V, BuildHasherDefault<IdentityHasher>>;
Expand description

A standard HashMap using InternedPath as the key type with a custom Hasher that just uses the precomputed hash for speed instead of calculating it.

Aliased Typeยง

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