1 2 3 4 5
use rustc_hash::{FxHashMap, FxHashSet}; pub type Set<T> = FxHashSet<T>; pub type Map<K, V> = FxHashMap<K, V>;