BitSHLN()
Performs a bitwise shift-left, no-rotation operation.
BitSHLN( number=number, count=number );
Returns: Number
Argument | Description |
---|---|
number
number,
required
|
an integer |
count
number,
required
|
Integer, in the range 0-31, inclusive; number of bits to shift the number |
Examples
The following code example will output an example numbers returned from the bitSHLN() function.
writeOutput(bitSHLN(128, 5));
See also
- Numbers
- Math
- numeric.bitSHLN()
- Search Issue Tracker
- Search Lucee Test Cases (good for further, detailed examples)