@FunctionalInterface
public interface IntToDoubleFunction3
Modifier and Type | Method and Description |
---|---|
double |
applyAsDouble(int value1,
int value2,
int value3)
Apply this function to the given 3 arguments.
|
default IntToDoubleFunction2 |
partial1(int value1)
View this function as one with 2 arguments using a fix first argument.
|
default IntToDoubleFunction2 |
partial2(int value2)
View this function as one with 2 arguments using a fix second argument.
|
default IntToDoubleFunction2 |
partial3(int value3)
View this function as one with 2 arguments using a fix third argument.
|
double applyAsDouble(int value1, int value2, int value3)
value1
- first argumentvalue2
- second argumentvalue3
- third argument@NotNull default IntToDoubleFunction2 partial1(int value1)
value1
- fix first argument@NotNull default IntToDoubleFunction2 partial2(int value2)
value2
- fix second argument@NotNull default IntToDoubleFunction2 partial3(int value3)
value3
- fix third argument