@FunctionalInterface
public interface IntToShortFunction3
Modifier and Type | Method and Description |
---|---|
short |
applyAsShort(int value1,
int value2,
int value3)
Apply this function to the given 3 arguments.
|
default IntToCharFunction3 |
asIntToCharFunction()
View this as an
int to char function which
considers the byte values unsigned. |
default IntToDoubleFunction3 |
asIntToDoubleFunction()
View this as an
int to double function. |
default IntToIntFunction3 |
asIntToIntFunction()
View this as an
int to int function. |
default IntToLongFunction3 |
asIntToLongFunction()
View this as an
int to long function. |
default IntToDoubleFunction3 |
asIntToUnsignedDoubleFunction()
View this as an
int to unsigned double function. |
default IntToIntFunction3 |
asIntToUnsignedIntFunction()
View this as an
int to unsigned int function. |
default IntToLongFunction3 |
asIntToUnsignedLongFunction()
View this as an
int to unsigned long function. |
default IntToShortFunction2 |
partial1(int value1)
View this function as one with 2 arguments using a fix first argument.
|
default IntToShortFunction2 |
partial2(int value2)
View this function as one with 2 arguments using a fix second argument.
|
default IntToShortFunction2 |
partial3(int value3)
View this function as one with 2 arguments using a fix third argument.
|
short applyAsShort(int value1, int value2, int value3)
value1
- first argumentvalue2
- second argumentvalue3
- second argument@NotNull default IntToShortFunction2 partial1(int value1)
value1
- fix first argument@NotNull default IntToShortFunction2 partial2(int value2)
value2
- fix second argument@NotNull default IntToShortFunction2 partial3(int value3)
value3
- fix third argument@NotNull default IntToIntFunction3 asIntToIntFunction()
int
to int
function.-32768
to 32767
@NotNull default IntToIntFunction3 asIntToUnsignedIntFunction()
int
to unsigned int
function.0
to 65535
@NotNull default IntToLongFunction3 asIntToLongFunction()
int
to long
function.-32768L
to 32767L
@NotNull default IntToLongFunction3 asIntToUnsignedLongFunction()
int
to unsigned long
function.0L
to 65535L
@NotNull default IntToDoubleFunction3 asIntToDoubleFunction()
int
to double
function.-32768.0
to 32767.0
@NotNull default IntToDoubleFunction3 asIntToUnsignedDoubleFunction()
int
to unsigned double
function.0.0
to 65535.0
@NotNull default IntToCharFunction3 asIntToCharFunction()
int
to char
function which
considers the byte values unsigned.(char)0
and (char)65535