pub type IntSet<K> = HashSet<K, BuildNoHashHasher<K>>;Expand description
A version of HashSet<K> using the identity hash function,
which is valid for any key type that can be converted to a u64 without truncation.
Aliased Typeยง
pub struct IntSet<K> { /* private fields */ }