pub fn xor<T>(
lhs: &PrimitiveArray<T>,
rhs: &PrimitiveArray<T>,
) -> PrimitiveArray<T>where
T: NativeType + BitXor<Output = T>,
Available on crate feature
compute_bitwise
only.Expand description
Performs XOR
operation between two PrimitiveArray
s.
ยงPanic
This function errors when the arrays have different lengths.