BIS_fnc_decodeFlags8

From Bohemia Interactive Community
Hover & click on the images for description

Description

Description:
Decodes a single scalar into array of unique 8-state flags (values 0,1,2,3,4,5,6,7).
Execution:
call
Groups:
Bitwise

Syntax

Syntax:
[encodedFlags, size] call BIS_fnc_decodeFlags8
Parameters:
encodedFlags: Number - non-decimal number between 0 and 16777215
size: Number - (Optional, default -1) output size. Size -1 means output will not be resized
Return Value:
Number - decoded flags

Examples

Example 1:
private _decodedFlags = 4311 call BIS_fnc_decodeFlags8; // [7,2,3,0,1]
Example 2:
private _decodedFlags = [4311, 8] call BIS_fnc_decodeFlags8; // [7,2,3,0,1,0,0,0]

Additional Information

See also:
BIS_fnc_encodeFlags8

Notes

Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note