Parameters
x
y
Return value
Returns the logical XOR of the two parameters following the logical operations semantic.
The call logical_xor(x, y) is semantically equivalent to (x && !y) || (!x && y).
logical_xor(x, y)
(x && !y) || (!x && y)