BitSHLN()

edit

Performs a bitwise shift-left, no-rotation operation.

BitSHLN( number=number, count=number );

Returns: Number

Argument Description
number
number, required
edit

an integer

count
number, required
edit

Integer, in the range 0-31, inclusive; number of bits to shift the number

Examples

edit

The following code example will output an example numbers returned from the bitSHLN() function.

    writeOutput(bitSHLN(128, 5));

See also