forked_react_compiler_utils 0.2.0

Rust port of the React Compiler, vendored from react/react.
Documentation
1
2
3
4
5
6
7
8
pub mod disjoint_set;

pub use disjoint_set::DisjointSet;

/// `IndexMap` keyed with the fast `FxHasher` (rustc-hash) instead of the default SipHash.
pub type FxIndexMap<K, V> = indexmap::IndexMap<K, V, rustc_hash::FxBuildHasher>;
/// `IndexSet` keyed with the fast `FxHasher` (rustc-hash) instead of the default SipHash.
pub type FxIndexSet<T> = indexmap::IndexSet<T, rustc_hash::FxBuildHasher>;