xorInPlace

open fun xorInPlace(other: F64Array)

Computes the bitwise xor of each element in the array with another array in place. The values are first cast to integers before the operation.

Parameters

other

the other array, must have the same shape as this array


open fun xorInPlace(other: Int)

Computes the bitwise xor of each element in the array with a scalar in place. The values are first cast to integers before the operation.

Parameters

other

the scalar