Skip to main content

FxHashSet

Type Alias FxHashSet 

Source
pub type FxHashSet<T> = HashSet<T, BuildHasherDefault<FxHasher>>;
Expand description

A hash set using FxHasher for fast hashing.

Aliased Type§

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

Trait Implementations§

Source§

impl<T> FxHashSetExt<T> for FxHashSet<T>

Source§

fn new() -> Self

Create a new empty set.
Source§

fn with_capacity(capacity: usize) -> Self

Create a new set with the given capacity.