SHL= Operator

Does a left-shift on the bits of a variable and assigns the result to the same variable.

Syntax

variable SHL= number

Parts

variable
An integer variable or property.
number
An integer expression which specifies the number of bits to shift.

Instructions

The two statements that follow operate the same.

variable SHL= number
variable = variable SHL number

Examples

TODO

See also