<!--
Operation Operator Class Associativity Example
---------------------------------------------------------------------------------
Logical AND && Binary Left $a && $b
Logical OR || Binary Left $a || $b
Logical NOT ! Unary Right !$a
Logical XOR xor Binary Left $a xor $b
Logical AND and Binary Left $a and $b
Logical OR or Binary Left $a or $b
-->
|