Boolean
This table describes the boolean operators.
Operator | Description | Left Hand Value Types | Right Hand Types | Notes |
---|---|---|---|---|
AND | Logical And | Boolean | Boolean | True of both the left and right side are true. |
OR | Logical Or | Boolean | Boolean | True if either the left or right side are true. |
XOR | Logical exclusive Or | Boolean | Boolean | True if only one of the left or right side is true. |