IndexSet

Type Alias IndexSet 

Source
pub type IndexSet<T> = IndexSet<T, BuildHasherDefault<FxHasher>>;

Aliased Type§

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

Trait Implementations§

Source§

impl<T: Clone> HashSetExt for IndexSet<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<_>>().