Type Alias HashSet

pub type HashSet<V> = HashSet<V, FxBuildHasher>;
Expand description

Type alias for a hash set that uses the Fx hashing algorithm.

Aliased Type§

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

Trait Implementations§

Source§

impl<T: Clone> HashSetExt for HashSet<T>

Source§

type Item = T

Source§

fn new() -> Self

Source§

fn to_owned_vec(&self) -> Vec<Self::Item>

Equivalent to self.iter().cloned().collect::<Vec<_>>().