pub type FxIndexMap<K, V> = IndexMap<K, V, BuildHasherDefault<FxHasher>>;Expand description
The insertion-ordered map behind every LOGOS Map: IndexMap for the
order contract (iteration, display, and serialization follow insertion,
like a Python dict), Fx hashing for speed on the small keys LOGOS programs
use (no DoS-resistance requirement).
Aliased Typeยง
pub struct FxIndexMap<K, V> { /* private fields */ }