@FunctionalInterface
public interface CharOperator2
Modifier and Type | Method and Description |
---|---|
default CharOperator2 |
andThen(CharOperator1 after)
Create a function which applies this function and feeds the result into the next function.
|
char |
applyAsChar(char arg1,
char arg2)
Apply the function.
|
default CharOperator1 |
partialLeft(char argument)
Get a partially applied function.
|
default CharOperator1 |
partialRight(char argument)
Get a partially applied function.
|
char applyAsChar(char arg1, char arg2)
arg1
- first argumentarg2
- second argument@NotNull default CharOperator1 partialLeft(char argument)
argument
- value applied for first argument@NotNull default CharOperator1 partialRight(char argument)
argument
- value applied for second argument@NotNull default CharOperator2 andThen(@NotNull CharOperator1 after)
after
- function called with the result of this function