Function bit_and
pub fn bit_and<T>(
    array: &PrimitiveArray<T>,
) -> Option<<T as ArrowPrimitiveType>::Native>where
    T: ArrowNumericType,
    <T as ArrowPrimitiveType>::Native: BitAnd<Output = <T as ArrowPrimitiveType>::Native> + ArrowNativeTypeOp,Expand description
Returns the bitwise and of all non-null input values.
Returns None if the array is empty or only contains null values.