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