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