Comparison operators
Comparison operators are used to compare two operands and return a Boolean result (TRUE or FALSE). Comparing participant objects works only if both participant objects are determined in the same way, for example, by means of the Get participant by name operator.
The mathematical operator == Equals returns TRUE if both operands are equal.
Mathematical operator != Not equal to returns TRUE if the operands are not equal.
The mathematical operator > Greater than returns TRUE if the left operand is greater than the right operand.
The mathematical operator > = Greater than or equals to returns TRUE if the left operand is greater than or equal to the right operand.
The mathematical operator < Smaller than returns TRUE if the left operand is smaller than the right operand.
The mathematical operator <= Smaller than or equals to returns TRUE if the left operand is smaller than or equal to the right operand.