Type Alias naga::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 */ }