mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-28 21:05:02 +00:00
4 lines
220 B
Rust
4 lines
220 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>;
|