Trait bitsetium::BitIntersection[][src]

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

Intersection of bit-sets.

Associated Types

Required methods

Returns bit-set with bits set for each index that has bit set in either of two arguments.

Implementations on Foreign Types

Implementors