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 PrimitiveArray
s.
ยงPanic
This function errors when the arrays have different lengths.