@FunctionalInterface
public interface CharOperator0
Modifier and Type | Method and Description |
---|---|
default CharOperator0 |
andThen(CharOperator1 after)
Create a function which applies this function and feeds the result into the next function.
|
char |
applyAsChar()
Apply the function.
|
char applyAsChar()
@NotNull default CharOperator0 andThen(@NotNull CharOperator1 after)
after
- function called with the result of this function