Trait deepmesa_collections::bitvec::traits::BitwiseLsb[][src]

pub trait BitwiseLsb<Rhs = bool> {
    type Output;
    fn and_lsb(self, n: u8, rhs: Rhs) -> Self::Output;
fn or_lsb(self, n: u8, rhs: Rhs) -> Self::Output;
fn xor_lsb(self, n: u8, rhs: Rhs) -> Self::Output; }
Expand description

Bitwise & (and), | (or) and ^ (xor) operations on the Lsb bits of self.

Associated Types

Required methods

Implementations on Foreign Types

Implementors