Function polars_arrow::compute::bitwise::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.