Learning ActionScript 2.0 in Adobe Flash |
|
|
|
| Syntax and Language Fundamentals > About operators > About bitwise logical operators | |||
The bitwise logical operators take two operands and perform bit-level logical operations. The bitwise logical operators differ in precedence and are listed in the table in order of decreasing precedence:
|
Operator |
Operation performed |
|---|---|
&
|
Bitwise AND |
^
|
Bitwise XOR |
|
|
Bitwise OR |
For information on using bitwise operators, see Using bitwise operators. For specific information on each bitwise operator, see its entry in the ActionScript 2.0 Language Reference.
|
|
|
|