Expression Operators
In Cascade expressions, operators can be used to build equations or compare values. Available operators are listed below:
Mathematical Operators
Operator
Description
+
(plus)
Adds values
-
(minus)
Subtracts values
*
(asterisk)
Multiplies values
/
(slash)
Divides values
%
(percent)
Calculates remainder of division calculation
^
(caret) OR **
(double asterisk)
Exponents
Comparison Operators
Operator
Description
=
OR ==
Equal to
!=
OR <>
Not equal to
>
Greater than
<
Less than
>=
Greater than or equal to
<=
Less than or equal to
Constants
Operator
Description
True
The boolean value True
False
The boolean value False
None
Null
Last updated