Operator | Operation | Description |
< | Less than | Produces the result true if the left operand's value is smaller than the right operand's value and false otherwise. |
<= | Less than or equal | Produces the result true if the left operand's value is smaller than or equal to the right operand's value and false otherwise. |
= | Equality | Produces the result true if the left operand's value is equal to the right operand's value and false if they are not equal. |
!= | Inequality | Produces the result true if the left operand's value is not equal to the right operand's value and false if they are equal. |
=> | Greater than or equal to | Produces the result true if the left operand's value is larger than or equal to the right operand's value and false otherwise. |
> | Greater than | Produces the result true if the left operand's value is larger than the right operand's value and false otherwise. |