Logical AND (and)
22.11.12.1 Logical AND (and)
N1 and N2: True if both N1 and N2 are ON.
Logical OR (or)
22.11.12.2 Logical OR (or)
N1 or N2: True if either N1 or N2 is ON.
Negation (not)
22.11.12.3 Negation (not)
not N1: Becomes 0 if N1 is 1, and 1 if N1 is 0.
Less than (<)
22.11.12.4 Less than (<)
N1 < N2: True if N1 is less than N2.
Less than or equal to (<=)
22.11.12.5 Less than or equal to (<=)
N1 <= N2: True if N1 is less than or equal to N2.
Not equal to (<>)
22.11.12.6 Not equal to (<>)
N1 <> N2: True if N1 is not equal to N2.
Greater than (>)
22.11.12.7 Greater than (>)
N1 > N2: True if N1 is greater than N2.
Greater than or equal to (>=)
22.11.12.8 Greater than or equal to (>=)
N1 >= N2: True if N1 is greater than or equal to N2.
Equal (==)
22.11.12.9 Equal to (==)
N1 == N2: True if N1 is equal to N2.