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