From Bohemia Interactive Community
Notes
- Posted on Apr 15, 2014 - 16:24
- ffur2007slx2_5
-
In ArmA3 ver 1.16 for multiple comparisons, we can use the example below for more accurate compare than BIS_fnc_arrayCompare or BIS_fnc_areEqual:
Fnc_areEqual = {
Private ["_b","_var1","_var2"];
_b = true;
For [{_i=1},{_i < (count _this) && _b},{_i=_i+1}] do {
_var1 = _this select (_i-1);
_var2 = _this select _i;
If (!(_var1 isEqualTo _var2)) then {_b = false;};
};
_b
};
["A","a","a"] call fnc_areEqual; // false
["A","a","a"] call BIS_fnc_areEqual; // true
Bottom Section
- Posted on July 19, 2014 - 19:48 (UTC)
- AgentRevolution
-
The behavior of "var1 isEqualTo var2" is pretty much equivalent to "var1 in [var2]", plus the ability to compare arrays, and slightly better performance.