1
0
Fork 0
mirror of https://github.com/ninjamuffin99/Funkin.git synced 2024-11-05 06:14:36 +00:00

Remove duplicate pushUnique

This commit is contained in:
EliteMasterEric 2023-10-19 01:03:58 -04:00
parent 041b5749d6
commit 92785166ef

View file

@ -23,13 +23,6 @@ class ArrayTools
return result; return result;
} }
public static function pushUnique<T>(array:Array<T>, element:T):Bool
{
if (array.contains(element)) return false;
array.push(element);
return true;
}
/** /**
* Return the first element of the array that satisfies the predicate, or null if none do. * Return the first element of the array that satisfies the predicate, or null if none do.
* @param input The array to search * @param input The array to search