rust-analyzer/crates/ra-salsa/src/hash.rs
2024-10-14 10:09:22 -04:00

3 lines
216 B
Rust

pub(crate) type FxHasher = std::hash::BuildHasherDefault<rustc_hash::FxHasher>;
pub(crate) type FxIndexSet<K> = indexmap::IndexSet<K, FxHasher>;
pub(crate) type FxIndexMap<K, V> = indexmap::IndexMap<K, V, FxHasher>;