@FunctionalInterface public interface IntCharToCharFunction
int
-valued and
a char
-valued argument
and produces a char
-valued result.
This is the (int, char, char)
specialization of BiFunction
.BiFunction
Modifier and Type | Method and Description |
---|---|
char |
applyAsChar(int a,
char b)
Applies this function to the given arguments.
|