Trait ChunkBitwiseReduce

Source
pub trait ChunkBitwiseReduce {
    type Physical;

    // Required methods
    fn and_reduce(&self) -> Option<Self::Physical>;
    fn or_reduce(&self) -> Option<Self::Physical>;
    fn xor_reduce(&self) -> Option<Self::Physical>;
}
Expand description

Bitwise Reduction Operations.

Required Associated Types§

Required Methods§

Source

fn and_reduce(&self) -> Option<Self::Physical>

Source

fn or_reduce(&self) -> Option<Self::Physical>

Source

fn xor_reduce(&self) -> Option<Self::Physical>

Implementors§