summary refs log tree commit diff
path: root/src/librustc_data_structures/fx.rs
blob: cf73fe8cf85ceeac553ff1db97a0b43fb2f3077a (plain)
1
2
3
4
5
6
use std::hash::BuildHasherDefault;

pub use rustc_hash::{FxHasher, FxHashMap, FxHashSet};

pub type FxIndexMap<K, V> = indexmap::IndexMap<K, V, BuildHasherDefault<FxHasher>>;
pub type FxIndexSet<V> = indexmap::IndexSet<V, BuildHasherDefault<FxHasher>>;