polars_arrow::compute

Module bitwise

Source
Available on crate feature compute_bitwise only.
Expand description

Contains bitwise operators: or, and, xor and not.

Functionsยง

and
Performs AND operation on two PrimitiveArrays.
and_scalar
Performs AND operation between a PrimitiveArray and scalar.
not
Returns a new PrimitiveArray with the bitwise not.
or
Performs OR operation on two PrimitiveArrays.
or_scalar
Performs OR operation between a PrimitiveArray and scalar.
xor
Performs XOR operation between two PrimitiveArrays.
xor_scalar
Performs XOR operation between a PrimitiveArray and scalar.