xor

open infix fun xor(other: F64Array): F64Array

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

Return

the computed array

Parameters

other

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


open infix fun xor(other: Int): F64Array

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

Return

the computed array

Parameters

other

the scalar