Operators > >>>= (bitwise unsigned right shift and assignment)

>>>= (bitwise unsigned right shift and assignment)

Syntax

expression1 >>>= expression2

Arguments

expression1 A number, string, or expression to be shifted left.

expression2 A number, string, or expression that converts to an integer from 0 to 31.

Description

Operator (compound assignment); performs a unsigned bitwise right shift operation and stores the contents as a result in expression1.

Player

Flash 5 or later.

Example

The following two expressions are equivalent:

A >>>= B 
A = (A >>> B)

See also

>>> (bitwise unsigned right shift)
>>= (bitwise right shift and assignment)