Java Utililty Methods Char Array Contain

List of utility methods to do Char Array Contain

Description

The list of methods to do Char Array Contain are organized into topic(s).

Method

booleancharArrayContains(final char e, final char[] f)
Returns true if the char[], f, contains the input char, e.
for (final char z : f) {
    if (e == z) {
        return true;
return false;