]> git.proxmox.com Git - rustc.git/blame - compiler/rustc_data_structures/src/fx.rs
New upstream version 1.68.2+dfsg1
[rustc.git] / compiler / rustc_data_structures / src / fx.rs
CommitLineData
dc9dc135
XL
1use std::hash::BuildHasherDefault;
2
dfeec247 3pub use rustc_hash::{FxHashMap, FxHashSet, FxHasher};
dc9dc135 4
f2b60f7d
FG
5pub type StdEntry<'a, K, V> = std::collections::hash_map::Entry<'a, K, V>;
6
dc9dc135
XL
7pub type FxIndexMap<K, V> = indexmap::IndexMap<K, V, BuildHasherDefault<FxHasher>>;
8pub type FxIndexSet<V> = indexmap::IndexSet<V, BuildHasherDefault<FxHasher>>;
f2b60f7d 9pub type IndexEntry<'a, K, V> = indexmap::map::Entry<'a, K, V>;
dfeec247
XL
10
11#[macro_export]
12macro_rules! define_id_collections {
f2b60f7d 13 ($map_name:ident, $set_name:ident, $entry_name:ident, $key:ty) => {
9c376795
FG
14 pub type $map_name<T> = $crate::unord::UnordMap<$key, T>;
15 pub type $set_name = $crate::unord::UnordSet<$key>;
f2b60f7d
FG
16 pub type $entry_name<'a, T> = $crate::fx::StdEntry<'a, $key, T>;
17 };
18}
19
20#[macro_export]
21macro_rules! define_stable_id_collections {
22 ($map_name:ident, $set_name:ident, $entry_name:ident, $key:ty) => {
23 pub type $map_name<T> = $crate::fx::FxIndexMap<$key, T>;
24 pub type $set_name = $crate::fx::FxIndexSet<$key>;
25 pub type $entry_name<'a, T> = $crate::fx::IndexEntry<'a, $key, T>;
dfeec247
XL
26 };
27}