XOR operator
Synopsis
This operator
performs a logical XOR operation.
Variations
Bool XOR Bool2
Performs a logical XOR
operation.
Details |
Examples |
Details and examples
Parameters
Bool
Specifies the first value.
Supported types: Boolean.
Bool2
Specifies the second value.
Supported types: Boolean.
Returns
Examples
1. |
The following example returns False.
True XOR
True
|
2. |
The following example returns True.
True XOR
False
|