com.koloboke.function
Interface DoubleIntToIntFunction
public interface DoubleIntToIntFunction
Represents a function that accepts
a double
-valued and
an int
-valued argument
and produces an int
-valued result.
This is the (double, int, int)
specialization of BiFunction
.
- See Also:
BiFunction
Method Summary |
int |
applyAsInt(double a,
int b)
Applies this function to the given arguments. |
applyAsInt
int applyAsInt(double a,
int b)
- Applies this function to the given arguments.
- Parameters:
a
- the first function argumentb
- the second function argument
- Returns:
- the function result