]> git.lizzy.rs Git - rust.git/blobdiff - src/librustc_data_structures/fx.rs
Auto merge of #65202 - pietroalbini:scriptify-ci-config, r=alexcrichton
[rust.git] / src / librustc_data_structures / fx.rs
index a2afeffe7305045b53f61d17f36e1875c78a5342..cf73fe8cf85ceeac553ff1db97a0b43fb2f3077a 100644 (file)
@@ -1 +1,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>>;