pub type HashSetFx<T> = HashSet<T, HasherBuildFx>;
Available on crate feature
hash
and (crate feature std
, or crate features dep_hashbrown
and hash
) only.Expand description
A HashSet
using a default Fx hasher.
To create with a reserved capacity,
use HashSetFx::with_capacity_and_hasher(num, Default::default())
.
Aliased Typeยง
struct HashSetFx<T> { /* private fields */ }