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

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

Required methods

pub fn is_empty(&self) -> bool[src]

pub fn contains(&self, element: &E) -> bool[src]

Loading content...

Implementations on Foreign Types

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

Loading content...

Implementors

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

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

Loading content...