pub trait Set {
type Elem: Eq + Clone;
// Required method
fn contains(&self, x: &Self::Elem) -> bool;
}
Expand description
A set.
The interface is minimal. A set has an element type (Elem
) and
can check whether values of that type belongs to the set. Sets are not assumed
to be finite.