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