pub fn or<T>(
lhs: &PrimitiveArray<T>,
rhs: &PrimitiveArray<T>,
) -> PrimitiveArray<T>where
T: NativeType + BitOr<Output = T>,Expand description
Performs OR operation on two PrimitiveArrays.
ยงPanic
This function errors when the arrays have different lengths.