Difference between revisions of "Bit32.rrotate"
From GiderosMobile
m (Text replacement - "<source" to "<syntaxhighlight") |
m (Text replacement - "</source>" to "</syntaxhighlight>") |
||
Line 7: | Line 7: | ||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
(number) = bit32.rrotate(x,disp) | (number) = bit32.rrotate(x,disp) | ||
− | </ | + | </syntaxhighlight> |
Returns the number x rotated disp bits to the right. | Returns the number x rotated disp bits to the right. | ||
Line 14: | Line 14: | ||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
assert(bit32.rrotate(x, disp) == bit32.rrotate(x , disp % 32)) | assert(bit32.rrotate(x, disp) == bit32.rrotate(x , disp % 32)) | ||
− | </ | + | </syntaxhighlight> |
'''Negative displacements rotate to the left''' | '''Negative displacements rotate to the left''' |
Latest revision as of 14:27, 13 July 2023
Available since: Gideros 2022.3
Class: bit32
Description
Returns a number after its bits have been rotated to the right by a given number of times.
(number) = bit32.rrotate(x,disp)
Returns the number x rotated disp bits to the right.
The number disp may be any representable integer. For any valid displacement, the following identity holds:
assert(bit32.rrotate(x, disp) == bit32.rrotate(x , disp % 32))
Negative displacements rotate to the left
Parameters
x: (number) value
disp: (number) displacement
Return values
Returns (number) result after bits right rotation
See also