Learning ActionScript 2.0 in Adobe Flash |
|
|
|
| Syntax and Language Fundamentals > About operators > About bitwise shift operators | |||
The bitwise shift operators take two operands and shift the bits of the first operand to the extent specified by the second operand. All of the operators in this table have equal precedence:
|
Operator |
Operation performed |
|---|---|
<<
|
Bitwise left shift |
>>
|
Bitwise right shift |
>>>
|
Bitwise unsigned right shift |
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.
|
|
|
|