Vocabularymath.
bitwiseInputsOutputsWord descriptionRolls the number
m by
s bits to the left, wrapping around after 32 bits.
ExamplesUSING: math.bitwise prettyprint ;
0x1 10 bitroll-32 .h
0x400
USING: math.bitwise prettyprint ;
0x1 -10 bitroll-32 .h
0x400000
See alsobitroll,
bitroll-64Definition