@FunctionalInterface
public interface CharUnaryOperator
Modifier and Type | Method and Description |
---|---|
default CharUnaryOperator |
andThen(CharUnaryOperator operator)
Compose this operator with another operator, applying the given operator to the result of this operator.
|
char |
applyAsChar(char c)
Apply this operator to the given
char . |
default CharUnaryOperator |
compose(CharUnaryOperator operator)
Compose this operator with another operator, applying this operator to the result of the given operator.
|
static CharUnaryOperator |
identity() |
char applyAsChar(char c)
char
.static CharUnaryOperator identity()
CharUnaryOperator
that always returns the same result.default CharUnaryOperator compose(CharUnaryOperator operator)
default CharUnaryOperator andThen(CharUnaryOperator operator)