@FunctionalInterface
public interface ByteOperator3
Modifier and Type | Method and Description |
---|---|
default ByteOperator3 |
andThen(ByteOperator1 after)
Create a function which applies this function and feeds the result into the next function.
|
byte |
applyAsByte(byte arg1,
byte arg2,
byte arg3)
Apply the function.
|
default ByteOperator2 |
partialLeft(byte argument)
Get a partially applied function.
|
default ByteOperator2 |
partialMid(byte argument)
Get a partially applied function.
|
default ByteOperator2 |
partialRight(byte argument)
Get a partially applied function.
|
byte applyAsByte(byte arg1, byte arg2, byte arg3)
arg1
- first argumentarg2
- second argumentarg3
- third argument@NotNull default ByteOperator2 partialLeft(byte argument)
argument
- value applied for first argument@NotNull default ByteOperator2 partialMid(byte argument)
argument
- value applied for second argument@NotNull default ByteOperator2 partialRight(byte argument)
argument
- value applied for third argument@NotNull default ByteOperator3 andThen(@NotNull ByteOperator1 after)
after
- function called with the result of this function