UnionMut

Trait UnionMut 

Source
pub trait UnionMut<Rhs> {
    // Required method
    fn union_mut(&mut self, other: &Rhs);
}

Required Methods§

Source

fn union_mut(&mut self, other: &Rhs)

Replaces self with the set union of self and other.

Implementors§

Source§

impl<T: Copy + Ord> UnionMut<Range<T>> for RangeSet<T>

Source§

impl<T: Copy + Ord> UnionMut<RangeSet<T>> for RangeSet<T>