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