pub type PrehashedHashSet<T> = HashSet<T, NoopU64BuildHasher>;
Expand description
A hash set based on the standard library’s (HashSet
) using NoopU64Hasher
.
This is only suitable for u64
values, or values which only wrap over a u64
value. See
NoopU64Hasher
for more details.
Aliased Type§
pub struct PrehashedHashSet<T> { /* private fields */ }