arrayIntersect – Talk

From Bohemia Interactive Community
Revision as of 21:13, 11 December 2018 by PierreMGI (talk | contribs) (Created page with " <!-- CONTINUE Notes --> <dl class="command_description"> <dd class="notedate">Posted on December 11, 2018 - 18:09 (UTC)</dd> <dt class="note">Pierre MGI</...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
Posted on December 11, 2018 - 18:09 (UTC)
Pierre MGI
useful to compare two arrays with same (single) elements but in different order:
_areEquivalent = _firstArray isEqualTo (_secondArray arrayIntersect _firstArray);
example:
_fistArray = ["a","b",0,1];
_secondArray = [1,"b",0,"a"];
_areEquivalent = ["a","b",0,1] isEqualTo ([1,"b",0,"a"] arrayIntersect ["a","b",0,1]) // returns true