rust/src/librustc_data_structures/fx.rs
2019-06-01 19:17:22 +03:00

6 lines
253 B
Rust

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>>;