Bit32.extract

From GiderosMobile
Revision as of 19:13, 22 January 2023 by MoKaLux (talk | contribs) (Created page with "__NOTOC__ '''Available since:''' Gideros 2022.3<br/> '''Class:''' bit32<br/> === Description === Returns the unsigned number formed by the bits field to field + width - 1...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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

Bitwise Operators