Xor Operator

Description:

The logical exclusive disjuction of the two boolean values:
true xor true = false
true xor false = true
false xor true = true
false xor false = false
The expression
A xor B
is equivalent to
(A and not B) or (B and not A)
.
Returns:
Boolean
Parameters:
Parameter
Data Type
Description
1
Boolean
The first boolean value.
2
Boolean
The second boolean value.

Related content