Skip to main content

HashSet

Type Alias HashSet 

Source
pub type HashSet<T> = RawHashSet<T, BuildHasherDefault<AxHasher>>;
Expand description

Drop-in hashbrown::HashSet with AxHasher as the default hasher. Use this alias when maximum third-party compatibility matters (e.g. Serde #[derive]). Every method on hashbrown::HashSet is available directly.

Aliased Typeยง

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