pub fn and<T>(
lhs: &PrimitiveArray<T>,
rhs: &PrimitiveArray<T>,
) -> PrimitiveArray<T>where
T: NativeType + BitAnd<Output = T>,
Available on crate feature
compute_bitwise
only.Expand description
Performs AND
operation on two PrimitiveArray
s.
ยงPanic
This function panics when the arrays have different lengths.