isEqualTo: Difference between revisions
Jump to navigation
Jump to search
(add note) |
m (spelling) |
||
Line 34: | Line 34: | ||
<dd class="notedate">Posted on Apr 15, 2014 - 16:24 | <dd class="notedate">Posted on Apr 15, 2014 - 16:24 | ||
<dt class="note">'''[[User:ffur2007slx2_5|ffur2007slx2_5]]'''<dd class="note"> | <dt class="note">'''[[User:ffur2007slx2_5|ffur2007slx2_5]]'''<dd class="note"> | ||
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]]: | |||
<code> | <code> | ||
Fnc_areEqual = { | Fnc_areEqual = { |
Revision as of 09:29, 15 April 2014
Description
- Description:
- Performs strict comparison between var1 and var2 and returns true if equal otherwise false.
- Groups:
- Uncategorised
Syntax
Examples
- Example 1:
_arr1 = [1,[2,[3]]]; _arr2 = [1,[2,[3]]]; if (_arr1 isEqualTo _arr2) then {hint "Arrays match!"}
Additional Information
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
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