Trait data_structure_traits::Set [] [src]

pub trait Set<'a, V: ?Sized, Q: ?Sized>: Collection + Get<&'a Q, Output = V> where
    &'a Self: 'a + IntoIterator<Item = &'a V>,
    V: 'a + Borrow<Q>,
    Q: 'a, 
{ fn contains(&self, q: &'a Q) -> bool { ... } }

Provided Methods

Implementors