@FunctionalInterface
public interface CharOperator1
Modifier and Type | Method and Description |
---|---|
default CharOperator1 |
andThen(CharOperator1 after)
Create a function which applies this function and feeds the result into the next function.
|
char |
applyAsChar(char value)
Apply the function.
|
default CharOperator0 |
partial(char argument)
Create a zero argument function from this one by applying a constant argument.
|
char applyAsChar(char value)
value
- parameter value of the function@NotNull default CharOperator0 partial(char argument)
argument
- constant argument@NotNull default CharOperator1 andThen(@NotNull CharOperator1 after)
after
- function called with the result of this function