@FunctionalInterface public interface DoubleIntToIntFunction
double
-valued and
an int
-valued argument
and produces an int
-valued result.
This is the (double, int, int)
specialization of BiFunction
.BiFunction
Modifier and Type | Method and Description |
---|---|
int |
applyAsInt(double a,
int b)
Applies this function to the given arguments.
|