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

reverses the vector of explicit sets and index of indexed sets

Deletes any repetitions

Union of two sets of the same type

Intersection of two sets of the same type

Removing s from self (i.e. self-s)

Implementors