From Bohemia Interactive Community
Notes
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.
- Posted on December 3, 2014 - 13:11 (UTC)
- Tajin
-
Simply put, "isEqualTo" is a binary comparison. Therefor it is very fast but only accepts 100% identical matches. In some other languages this is known as "===" instead of "==".
- Posted on May 21, 2015 - 11:26 (UTC)
- Killzone Kid
-
A faster, case-sensitive alternative to BIS_fnc_areEqual using isEqualTo:
KK_fnc_allEqual = {
private ["_arr", "_first"];
_arr = [];
_first = _this select 0;
for "_i" from 0 to count _this - 1 do {
_arr pushBack _first;
};
_arr isEqualTo _this
};
// Example
[[1,2],[1,2],[1,3]] call KK_fnc_allEqual; //false
- Posted on May 21, 2015 - 15:30 (UTC)
- Killzone Kid
-
Array "compare" implementation using isEqualTo, a faster, case-sensitive alternative to BIS_fnc_arrayCompare:
KK_fnc_compare = {
_this select 0 isEqualTo (_this select 1)
};
// Example
[[1,2,3],[1,2,3]] call KK_fnc_compare; //true