pub type FastSet<K> = HashSet<K>;Expand description
A hash set optimized for fast hashing performance.
Currently an alias for HashSet, but will be replaced with a faster
hash implementation in the future.
Aliased Typeยง
pub struct FastSet<K> { /* private fields */ }