Type Alias aoc::util::hash::FastMap

source ·
pub type FastMap<K, V> = HashMap<K, V, BuildFxHasher>;
Expand description

Type alias for HashMap using FxHasher.

Aliased Type§

struct FastMap<K, V> { /* private fields */ }

Trait Implementations§

source§

impl<K: Eq + Hash, V> FastMapBuilder<K, V> for FastMap<K, V>

source§

fn new() -> Self

source§

fn with_capacity(capacity: usize) -> Self

source§

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