]> git.lizzy.rs Git - rust.git/blob - src/librustc_data_structures/fx.rs
Rollup merge of #61444 - estebank:const-pt-as-ref, r=matthewjasper
[rust.git] / src / librustc_data_structures / fx.rs
1 use std::hash::BuildHasherDefault;
2
3 pub use rustc_hash::{FxHasher, FxHashMap, FxHashSet};
4
5 pub type FxIndexMap<K, V> = indexmap::IndexMap<K, V, BuildHasherDefault<FxHasher>>;
6 pub type FxIndexSet<V> = indexmap::IndexSet<V, BuildHasherDefault<FxHasher>>;