@FunctionalInterface
public interface IntToCharFunction2
Modifier and Type | Method and Description |
---|---|
char |
applyAsChar(int value1,
int value2)
Apply this function to the given 2 arguments.
|
default IntToDoubleFunction2 |
asIntToDoubleFunction()
View this as a 2
int to double function. |
default java.util.function.IntBinaryOperator |
asIntToIntFunction()
View this as a 2
int to int function. |
default IntToLongFunction2 |
asIntToLongFunction()
View this as a 2
int to long function. |
default IntToShortFunction2 |
asIntToShortFunction()
View this as a 2
int to short function. |
default IntToCharFunction1 |
partial1(int value1)
View this function as one with 1 argument using a fix first argument.
|
default IntToCharFunction1 |
partial2(int value2)
View this function as one with 1 argument using a fix second argument.
|
char applyAsChar(int value1, int value2)
value1
- first argumentvalue2
- second argument@NotNull default IntToCharFunction1 partial1(int value1)
value1
- fix first argument@NotNull default IntToCharFunction1 partial2(int value2)
value2
- fix second argument@NotNull default IntToShortFunction2 asIntToShortFunction()
int
to short
function.-32768
to 32767
@NotNull default java.util.function.IntBinaryOperator asIntToIntFunction()
int
to int
function.0
to 65535
@NotNull default IntToLongFunction2 asIntToLongFunction()
int
to long
function.0L
to 65535L
@NotNull default IntToDoubleFunction2 asIntToDoubleFunction()
int
to double
function.0.0
to 65535.0