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 PrimitiveArrays.

Panic

This function panics when the arrays have different lengths.