Difference between revisions of "Bit.arshift"
From GiderosMobile
m (Text replacement - "<source" to "<syntaxhighlight") |
|||
Line 5: | Line 5: | ||
=== <translate>Description</translate> === | === <translate>Description</translate> === | ||
<translate>Returns the bitwise arithmetic right-shift by the number of bits given by the second argument.</translate> | <translate>Returns the bitwise arithmetic right-shift by the number of bits given by the second argument.</translate> | ||
− | < | + | <syntaxhighlight lang="lua"> |
(number) = bit.arshift(x,n) | (number) = bit.arshift(x,n) | ||
</source> | </source> |
Revision as of 14:26, 13 July 2023
Available since: Gideros 2013.09
Class: bit
Description
Returns the bitwise arithmetic right-shift by the number of bits given by the second argument. <syntaxhighlight lang="lua"> (number) = bit.arshift(x,n) </source>
Parameters
x: (number) number to shift
n: (number) amount of bits to shift
Return values
Returns (number) bitwise arithmetic right-shift