Difference between revisions of "Bit32.extract"
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.extract(n,field,width) | (number) = bit32.extract(n,field,width) | ||
− | </ | + | </syntaxhighlight> |
'''Bits are numbered from 0 (least significant) to 31 (most significant). All accessed bits must be in the range [0, 31]. The default for width is 1''' | '''Bits are numbered from 0 (least significant) to 31 (most significant). All accessed bits must be in the range [0, 31]. The default for width is 1''' |
Latest revision as of 14:27, 13 July 2023
Available since: Gideros 2022.3
Class: bit32
Description
Returns the unsigned number formed by the bits field to field + width - 1 from n.
(number) = bit32.extract(n,field,width)
Bits are numbered from 0 (least significant) to 31 (most significant). All accessed bits must be in the range [0, 31]. The default for width is 1
Parameters
n: (number) value
field: (number) field value
width: (number) width value optional: default value 1
Return values
Returns (number) unsigned number
See also