naga

Type Alias FastIndexMap

Source
pub type FastIndexMap<K, V> = IndexMap<K, V, BuildHasherDefault<FxHasher>>;
Expand description

Insertion-order-preserving hash map (IndexMap<K, V>), but with the same hasher as FastHashMap<K, V> (faster but not resilient to DoS attacks).

Aliased Typeยง

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