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