pub type FastHashSet<K> = HashSet<K, BuildHasherDefault<FxHasher>>;
Expand description
Hash set that is faster but not resilient to DoS attacks. (Similar to rustc_hash::FxHashSet but using hashbrown::HashSet instead of alloc::collections::HashMap.)
Aliased Typeยง
struct FastHashSet<K> { /* private fields */ }