Available on crate feature
compute_bitwise
only.Functionsยง
- and
- Performs
AND
operation on twoPrimitiveArray
s. - and_
scalar - Performs
AND
operation between aPrimitiveArray
and scalar. - not
- Returns a new
PrimitiveArray
with the bitwisenot
. - or
- Performs
OR
operation on twoPrimitiveArray
s. - or_
scalar - Performs
OR
operation between aPrimitiveArray
and scalar. - xor
- Performs
XOR
operation between twoPrimitiveArray
s. - xor_
scalar - Performs
XOR
operation between aPrimitiveArray
and scalar.