Function polars_arrow::compute::bitwise::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 PrimitiveArray
s.
§Panic
This function panics when the arrays have different lengths.