@FunctionalInterface public interface CharToIntFunction
char
-valued argument and produces an
int
-valued result. This is the char
-to-int
primitive
specialization for Function
.Function
Modifier and Type | Method and Description |
---|---|
int |
applyAsInt(char value)
Applies this function to the given argument.
|