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