Skip to content

function numluau.logical_xor(
    x1 : numluau.ndArray<boolean>,
    x2 : numluau.ndArray<boolean>
): numluau.ndArray<boolean>
given 2 values, returns the logical exclusive or between x1 & x2

Parameters

x1 : numluau.ndArray<boolean>

the first value.

x2 : numluau.ndArray<boolean>

the second value.

Returns -> ndArray<boolean>

a new boolean mask ndArray.