List of utility methods to do Array Contains
boolean | contains(int[] array, int valueToFind) Checks if the value is in the given array. The method returns return indexOf(array, valueToFind) != INDEX_NOT_FOUND;
|
boolean | contains(long[] array, long valueToFind) Checks if the value is in the given array. The method returns return indexOf(array, valueToFind) != INDEX_NOT_FOUND;
|
boolean | contains(short[] array, short valueToFind) Checks if the value is in the given array. The method returns return indexOf(array, valueToFind) != INDEX_NOT_FOUND;
|