Skip to main content

HashSet

Type Alias HashSet 

Source
pub type HashSet<T> = HashSet<T, FxBuildHasher>;
Expand description

Fast hash set using FxHash algorithm.

This type alias is used throughout the crate for better performance compared to the standard library’s HashSet.

Aliased Type§

pub struct HashSet<T> { /* private fields */ }