numeric.bitSHLN()
Performs a bitwise shift-left, no-rotation operation.
numeric.bitSHLN( count=number )
Returns: Number
Argument | Description |
---|---|
count
number,
required
|
Integer, in the range 0-31, inclusive; number of bits to shift the number |
Examples
writeOutput(32.0.bitshln(5));writeOutput("</br>");
writeOutput(32.0.bitshln(4));writeOutput("</br>");
writeOutput(32.0.bitshln(3));writeOutput("</br>");
writeOutput(32.0.bitshln(2));