com.koloboke.function
Interface IntCharToCharFunction
public interface IntCharToCharFunction
Represents a function that accepts
an int
-valued and
a char
-valued argument
and produces a char
-valued result.
This is the (int, char, char)
specialization of BiFunction
.
- See Also:
BiFunction
Method Summary |
char |
applyAsChar(int a,
char b)
Applies this function to the given arguments. |
applyAsChar
char applyAsChar(int a,
char b)
- Applies this function to the given arguments.
- Parameters:
a
- the first function argumentb
- the second function argument
- Returns:
- the function result