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