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