polars_arrow::compute::bitwise

Function and

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