[][src]Trait rustc_data_structures::bit_set::SubtractFromBitSet

pub trait SubtractFromBitSet<T: Idx> {
    fn subtract_from(&self, other: &mut BitSet<T>) -> bool;
}

This is implemented by all the bitsets so that BitSet::subtract() can be passed any type of bitset.

Required methods

fn subtract_from(&self, other: &mut BitSet<T>) -> bool

Loading content...

Implementors

impl<T: Idx> SubtractFromBitSet<T> for HybridBitSet<T>[src]

impl<T: Idx> SubtractFromBitSet<T> for BitSet<T>[src]

impl<T: Idx> SubtractFromBitSet<T> for SparseBitSet<T>[src]

Loading content...