pub fn apply_cmp_bool(
lhs: BooleanAVT<'_, ()>,
rhs: BooleanAVT<'_, ()>,
op: ComparisonOperator,
) -> Result<BooleanArray<()>, KernelError>Expand description
Boolean Bit packed
Note that this function delegates to SIMD or not SIMD within the inner cmp_bool
module, given bool is self-contained as a datatype.
“Elementwise boolean bitwise SIMD comparison falling back to scalar if simd not enabled.
Returns BooleanArray<()>.”