rune_core/
hashmap.rs

1//! Hashmap types used in the crate.
2use fxhash::FxBuildHasher;
3
4pub type HashMap<K, V> = std::collections::HashMap<K, V, FxBuildHasher>;
5pub type HashSet<K> = std::collections::HashSet<K, FxBuildHasher>;
6pub type IndexMap<K, V> = indexmap::IndexMap<K, V, FxBuildHasher>;