aoc::util::hash

Type Alias 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