Type Alias difft::hash::DftHashSet
source · pub(crate) type DftHashSet<V> = FxHashSet<V>;
Expand description
A fast hash set with no hash DoS protection. This is a simple
alias, but added for consistency with DftHashMap
.
Aliased Type§
struct DftHashSet<V> {
base: HashSet<V, FxBuildHasher, Global>,
}
Fields§
§base: HashSet<V, FxBuildHasher, Global>