Type Alias wgpu::naga::FastIndexMap

source ·
pub type FastIndexMap<K, V> = IndexMap<K, V, BuildHasherDefault<FxHasher>>;
Available on wgpu_core or naga only.
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 */ }