ACE3/addons/common/functions/fnc_toBitmask.sqf
jonpas 76e1aafb33
Use function documentation script (#6897)
Co-authored-by: Björn Dahlgren <bjorn@dahlgren.io>
2023-04-30 23:03:35 +02:00

28 lines
422 B
Plaintext

#include "script_component.hpp"
/*
* Author: commy2
* Convert an array of booleans into a number.
*
* Arguments:
* 0: Boolean <BOOL>
* 1: Boolean <BOOL>
* 2: Boolean <BOOL>
* ...
*
* Return Value:
* Bitmask <NUMBER>
*
* Example:
* [[true, false]] call ace_common_fnc_toBitmask
*
* Public: Yes
*/
private _result = 0;
{
if (_x) then {_result = _result + 2 ^ _forEachIndex};
} forEach _this;
_result