Type Alias aoc::util::hash::FastSet

source ·
pub type FastSet<T> = HashSet<T, BuildFxHasher>;
Expand description

Type alias for HashSet using FxHasher.

Aliased Type§

struct FastSet<T> { /* private fields */ }

Trait Implementations§

source§

impl<T: Eq + Hash> FastSetBuilder<T> for FastSet<T>

source§

fn new() -> Self

source§

fn with_capacity(capacity: usize) -> Self

source§

fn build<const N: usize>(array: [T; N]) -> Self