@FunctionalInterface public interface IntIntToIntFunction
int
-valued arguments
and produces an int
-valued result.
This is the (int, int, int)
specialization of BiFunction
.
Unlike IntBinaryOperator
, this function is supposed to accept heterogeneous
arguments, e. g. key and value
in IntIntMap.compute(int, IntIntToIntFunction)
method.
BiFunction
Modifier and Type | Method and Description |
---|---|
int |
applyAsInt(int a,
int b)
Applies this function to the given arguments.
|