Trait bitvec_simd::BitContainer[][src]

pub trait BitContainer<T: BitContainerElement, const L: usize> {
    const BIT_WIDTH: usize;
    const ELEMENT_BIT_WIDTH: usize;
    const LANES: usize;
    const ZERO_ELEMENT: T;
    const ONE_ELEMENT: T;
    const MAX_ELEMENT: T;
    const ZERO: Self;
    const MAX: Self;

    fn to_array(self) -> [T; L];
}

Associated Constants

Required methods

Implementations on Foreign Types

Implementors