Trait sets::MutSetOps [−][src]
pub trait MutSetOps<T> {
fn mreverse(&mut self);
fn mnonrepeat(&mut self);
fn munion(&mut self, s: &Self);
fn mintersection(&mut self, s: &Self);
fn mdifference(&mut self, s: &Self);
}Required methods
fn mnonrepeat(&mut self)
fn mnonrepeat(&mut self)Deletes any repetitions
fn mintersection(&mut self, s: &Self)
fn mintersection(&mut self, s: &Self)Intersection of two sets of the same type
fn mdifference(&mut self, s: &Self)
fn mdifference(&mut self, s: &Self)Removing s from self (i.e. self-s)