BIS fnc decodeFlags2: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "\|gr([0-9]+) = " to "|gr$1= ")
m (Text replacement - " \| *(\[\[[a-zA-Z ]+\]\].+) \|x1=" to " |r1=$1 |x1=")
Line 16: Line 16:
|p2= size: [[Number]] - (Optional, default 1) wanted array size
|p2= size: [[Number]] - (Optional, default 1) wanted array size


| [[Array]] of [[Number]]s - "boolean" flags where 0 {{=}} false and 1 {{=}} true
|r1=[[Array]] of [[Number]]s - "boolean" flags where 0 {{=}} false and 1 {{=}} true


|x1= <code>[[private]] _result = 13 [[call]] [[BIS_fnc_decodeFlags2]]; {{cc|returns [1,0,1,1]}}</code>
|x1= <code>[[private]] _result = 13 [[call]] [[BIS_fnc_decodeFlags2]]; {{cc|returns [1,0,1,1]}}</code>

Revision as of 21:27, 10 June 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:
Array of Numbers - "boolean" flags where 0 = false and 1 = true

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