Difference between revisions of "Bit.bswap"
From GiderosMobile
(Created page with "__NOTOC__ '''Available since:''' Gideros 2013.09<br/> === Description === Swaps the bytes of its argument and returns it. This can be used to convert little-endian 32 bit numb...") |
|||
Line 4: | Line 4: | ||
Swaps the bytes of its argument and returns it. This can be used to convert little-endian 32 bit numbers to big-endian 32 bit numbers or vice versa. | Swaps the bytes of its argument and returns it. This can be used to convert little-endian 32 bit numbers to big-endian 32 bit numbers or vice versa. | ||
<source lang="lua"> | <source lang="lua"> | ||
− | (number) | + | (number) = bit.bswap(x) |
</source> | </source> | ||
− | '''x | + | '''x''': (number) number to swap ''''''<br/> |
'''Returns''' (number) Swapped bytes<br/> | '''Returns''' (number) Swapped bytes<br/> |
Revision as of 10:20, 23 August 2018
Available since: Gideros 2013.09
Description
Swaps the bytes of its argument and returns it. This can be used to convert little-endian 32 bit numbers to big-endian 32 bit numbers or vice versa.
(number) = bit.bswap(x)
'x: (number) number to swap '
Returns (number) Swapped bytes