# Arithmetic operators
rem # modulo (remainder)
div # floor division
# Logical operators
== # equal
/= # not equal
=== # type check
and # AND
or # OR
not # NOT
&& # non-strict and
|| # non-strict or
! # non-strict not
# Bitwise operators
&&& # AND
||| # OR
^^^ # XOR
~~~ # NOT
<<< # left shift
>>> # right shift