polars_arrow::compute::bitwise

Function or

Source
pub fn or<T>(
    lhs: &PrimitiveArray<T>,
    rhs: &PrimitiveArray<T>,
) -> PrimitiveArray<T>
where T: NativeType + BitOr<Output = T>,
Available on crate feature compute_bitwise only.
Expand description

Performs OR operation on two PrimitiveArrays.

ยงPanic

This function errors when the arrays have different lengths.