22.11.12 Comparison

22.11.12.1 Logical AND (and)
N1 and N2: True if both N1 and N2 are ON.

22.11.12.2 Logical OR (or)
N1 or N2: True if either N1 or N2 is ON.

22.11.12.3 Negation (not)
not N1: Becomes 0 if N1 is 1, and 1 if N1 is 0.

22.11.12.4 Less than (<)
N1 < N2: True if N1 is less than N2.

22.11.12.5 Less than or equal to (<=)
N1 <= N2: True if N1 is less than or equal to N2.

22.11.12.6 Not equal to (<>)
N1 <> N2: True if N1 is not equal to N2.

22.11.12.7 Greater than (>)
N1 > N2: True if N1 is greater than N2.

22.11.12.8 Greater than or equal to (>=)
N1 >= N2: True if N1 is greater than or equal to N2.

22.11.12.9 Equal (==)
N1 == N2: True if N1 is equal to N2.