Revert "Add faster array compare function"

This reverts commit d7cc4be585.
This commit is contained in:
ebaydayz
2016-08-23 18:22:06 -04:00
parent a323f453d2
commit 8af3d001ba
4 changed files with 2 additions and 17 deletions

View File

@@ -1,14 +0,0 @@
/*
Kilzone_Kid's megafast isEqual function
params [array1,array2]
Examples:
hint str ([[1,2,3], [1,2,3]] call fnc_isEqual); //true
hint str ([[1,[2,[3]]], [1,[2,[3]]]] call fnc_isEqual); //true
hint str ([[1,[2,[3]]], [1,[2,[4]]]] call fnc_isEqual); //false
*/
switch (_this select 0) do {
case (_this select 1) : {true};
default {false};
};