Skip to main content

or

Function or 

Source
pub fn or(lhs: &dyn Array, rhs: &dyn Array) -> VortexResult<ArrayRef>
👎Deprecated: Use or_kleene instead. Non-Kleene boolean ops cannot be lazily evaluated.
Expand description

Point-wise logical or 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::Or