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