mirror of
https://github.com/salsa-rs/salsa.git
synced 2025-02-06 20:42:20 +00:00
4 lines
216 B
Rust
4 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>;
|