mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-11-05 22:34:36 +00:00
41 lines
968 B
Haxe
41 lines
968 B
Haxe
package funkin.util.tools;
|
|
|
|
/**
|
|
* A static extension which provides utility functions for Arrays.
|
|
*/
|
|
class ArrayTools
|
|
{
|
|
/**
|
|
* Returns a copy of the array with all duplicate elements removed.
|
|
* @param array The array to remove duplicates from.
|
|
* @return A copy of the array with all duplicate elements removed.
|
|
*/
|
|
public static function unique<T>(array:Array<T>):Array<T>
|
|
{
|
|
var result:Array<T> = [];
|
|
for (element in array)
|
|
{
|
|
if (!result.contains(element))
|
|
{
|
|
result.push(element);
|
|
}
|
|
}
|
|
return result;
|
|
}
|
|
|
|
/**
|
|
* Return the first element of the array that satisfies the predicate, or null if none do.
|
|
* @param input The array to search
|
|
* @param predicate The predicate to call
|
|
* @return The result
|
|
*/
|
|
public static function find<T>(input:Array<T>, predicate:T->Bool):Null<T>
|
|
{
|
|
for (element in input)
|
|
{
|
|
if (predicate(element)) return element;
|
|
}
|
|
return null;
|
|
}
|
|
}
|