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