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>;
}Available on crate feature
bitwise only.Expand description
Bitwise Reduction Operations.