@FunctionalInterface public interface LongLongToLongFunction
long
-valued arguments
and produces a long
-valued result.
This is the (long, long, long)
specialization of BiFunction
.
Unlike LongBinaryOperator
, this function is supposed to accept heterogeneous
arguments, e. g. key and value
in LongLongMap.compute(long, LongLongToLongFunction)
method.
BiFunction
Modifier and Type | Method and Description |
---|---|
long |
applyAsLong(long a,
long b)
Applies this function to the given arguments.
|