pub fn and(lhs: &dyn Array, rhs: &dyn Array) -> VortexResult<ArrayRef>👎Deprecated: Use and_kleene instead. Non-Kleene boolean ops cannot be lazily evaluated.
Expand description
Point-wise logical and between two Boolean arrays.
This method uses Arrow-style null propagation rather than the Kleene logic semantics. This semantics is also known as “Bochvar logic” and “weak Kleene logic”.
See also BooleanOperator::And