Trait bitsetium::BitUnion[][src]

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

Union of bit-sets.

Associated Types

Required methods

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

Implementations on Foreign Types

Implementors