Android Utililty Methods Int Array Contains

List of utility methods to do Int Array Contains

Description

The list of methods to do Int Array Contains are organized into topic(s).

Method

booleancontains(int[] array, int value)
contains
for (int element : array) {
    if (element == value) {
        return true;
return false;