[][src]Trait lset::Contains

pub trait Contains<T> {
    fn contains(&self, value: &T) -> bool;
}

Determines whether a set contains an element

Required methods

fn contains(&self, value: &T) -> bool

Returns whether or not the set contains the element

Loading content...

Implementors

impl<T, U> Contains<Span<T, U>> for Span<T, U> where
    Self: Into<Line<T>> + Clone,
    T: PartialOrd
[src]

impl<T, U> Contains<T> for Span<T, U> where
    Self: Into<Line<T>> + Clone,
    Line<T>: Contains<T>, 
[src]

impl<T: PartialOrd> Contains<Line<T>> for Line<T>[src]

impl<T: PartialOrd> Contains<T> for Line<T>[src]

Loading content...