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