Operators
All Operators
Operator | Description |
---|---|
And | Returns the logical AND of one or more expressions. |
Divide | Divides the value of one numeric expression by another. |
EqualTo | Returns true if two expressions are equal. |
GreaterThan | Returns true if the first expression is greater than the second expression. |
GreaterThanOrEqual | Returns true if the first expression is greater than or equal to the second expression. |
LessThan | Returns true if the first expression is less than the second expression. |
LessThanOrEqual | Returns true if the first expression is less than or equal to the second expression. |
Minus | Subtracts the value of one numeric expression from another. |
Multiply | Multiplies the value of one numeric expression by another. |
NotEqualTo | Return true if two expressions are not equal. |
Or | Returns the logical OR of one or more expressions. |
Plus | Adds the value of one numeric expression to another. |
Power | Takes the value of one numeric expression to the power of the exponent value. |
Xor | The Xor function returns the logical exclusive OR of one or more expressions. The Xor operator requires two expressions. |