[][src]Trait math::set::traits::Set

pub trait Set<E> {
    fn is_empty(&self) -> bool;
fn contains(&self, element: &E) -> bool; }

Required methods

fn is_empty(&self) -> bool

fn contains(&self, element: &E) -> bool

Loading content...

Implementations on Foreign Types

impl<T: Clone + Eq + Hash> Set<T> for HashSet<T>[src]

Loading content...

Implementors

impl<E: Integer + Copy> Set<E> for ContiguousIntegerSet<E>[src]

impl<E: Integer + Copy + ToPrimitive> Set<E> for OrderedIntegerSet<E>[src]

Loading content...