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.