pub type IntSet<T> = HashSet<T, BuildNoHashHasher<T>>;
A HashSet of integers, using NoHashHasher to perform no hashing at all.
HashSet
NoHashHasher
See IsEnabled for use with custom types.
IsEnabled
use nohash_hasher::IntSet; let mut m = IntSet::default(); m.insert(0u32); m.insert(1u32); assert!(m.contains(&0)); assert!(m.contains(&1));