BIS fnc decodeFlags2: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "{{Function " to "{{RV|type=function ")
m (Text replacement - "\{\{( *)Informative( *)\|" to "{{$1Feature$2|$2Informative$2|")
Line 8: Line 8:


| Decodes a single scalar into array of unique binary flags (zeroes or ones).
| Decodes a single scalar into array of unique binary flags (zeroes or ones).
{{Informative | The maximal decodable number is '''16777215''' (2<sup>24</sup> - 1).}}
{{Feature | Informative | The maximal decodable number is '''16777215''' (2<sup>24</sup> - 1).}}


| [value, size] call [[BIS_fnc_decodeFlags2]]
| [value, size] call [[BIS_fnc_decodeFlags2]]

Revision as of 01:01, 7 February 2021

Hover & click on the images for description

Description

Description:
Description needed
Execution:
call
Groups:
Bitwise

Syntax

Syntax:
Syntax needed
Parameters:
value: Number - (Optional, default 0) the value to be converted
size: Number - (Optional, default 1) wanted array size
Return Value:
Return value needed

Examples

Example 1:
private _result = 13 call BIS_fnc_decodeFlags2; // returns [1,0,1,1]
Example 2:
private _result = [13, 8] call BIS_fnc_decodeFlags2; // returns [1,0,1,1,0,0,0,0]

Additional Information

See also:
See also needed

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