BIS fnc encodeFlags2: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - " \| *([^=\| ]+) * \|p1=" to " |s1= $1 |p1=")
m (Text replacement - "\| *(arg|eff|mp|serverExec|gr[0-9]) *= *(.*) * *\|([^=]{12})" to "|$1=$2 |descr=$3")
Line 7: Line 7:
|gr1= Bitwise
|gr1= Bitwise


| Encodes array of unique binary flags (zeroes or ones) into a single scalar.
|descr= Encodes array of unique binary flags (zeroes or ones) into a single scalar.
{{Feature | important | Note that the input array is in {{Wikipedia|Endianness#Definition|Big Endian}}, meaning that the smallest value is '''to the left'''.}}
{{Feature | important | Note that the input array is in {{Wikipedia|Endianness#Definition|Big Endian}}, meaning that the smallest value is '''to the left'''.}}



Revision as of 21:47, 13 June 2021

Hover & click on the images for description

Description

Description:
Encodes array of unique binary flags (zeroes or ones) into a single scalar.
Note that the input array is in Big Endian, meaning that the smallest value is to the left.
Execution:
call
Groups:
Bitwise

Syntax

Syntax:
arrayOfNumbers call BIS_fnc_encodeFlags2
Parameters:
arrayOfNumbers: Array of Numbers - "boolean" flags where 0 = false and 1 = true
Return Value:
Number - the calculated number

Examples

Example 1:
private _result = [1,0,1,1] call BIS_fnc_encodeFlags2; hint str _result; // Displays 13

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