There is a typo in the table "An overview of the possible comparison operations"
It should be:
An overview of the possible comparison operations:
| Operator |
Description |
| == |
Equal |
| != |
Not equal |
| > |
Greater than |
| >= |
Greater than or equal |
| < |
Lesser than |
| !> |
Lesser than or equal |
and to combine multiple conditions:
| Operator |
Description |
| & |
And (cond1 & cond2) |
| | |
Or (cond1 | cond2) |
There is a typo in the table "An overview of the possible comparison operations"
It should be:
An overview of the possible comparison operations:
and to combine multiple conditions:
cond1 & cond2)cond1 | cond2)