Skip to main content

react_compiler_utils/
lib.rs

1pub mod disjoint_set;
2
3pub use disjoint_set::DisjointSet;
4
5/// `IndexMap` keyed with the fast `FxHasher` (rustc-hash) instead of the default SipHash.
6pub type FxIndexMap<K, V> = indexmap::IndexMap<K, V, rustc_hash::FxBuildHasher>;
7/// `IndexSet` keyed with the fast `FxHasher` (rustc-hash) instead of the default SipHash.
8pub type FxIndexSet<T> = indexmap::IndexSet<T, rustc_hash::FxBuildHasher>;