&band, &bor, &bnot, &bxor - Bitwise macro operators
&band num1 num2
&bor num1 num2
&bxor num1 num2
&bnot num
The bitwise operators perform bit operations on numeric values returning a numerical result of the operation.
The functions may all be abbreviated to their three letter abbreviation (i.e. &band may be expressed as &ban). In all cases the first argument is completely evaluated before the second argument.
&band num1 num2
&bor num1 num2
&bxor num1 num2
¬ num
Evaluation of the bitwise operators are left to right, the leftmost argument is fully evaluated before the next argument. The operator ordering is prefix notation (see &add(4) for an example of prefix ordering).
(c) Copyright JASSPA 1999
Last Modified: 1998/09/03
Generated On: 1999/12/01