Trait bitsetium::BitDifference[][src]

pub trait BitDifference<Rhs = Self> {
    type Output;
    fn difference(self, rhs: Rhs) -> Self::Output;
}
Expand description

Difference between two subsets.

Associated Types

Required methods

Returns bit-set has bits set for each index that has bit set in exactly one of two arguments.

Implementations on Foreign Types

Implementors