|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface LongLongToLongFunction
Represents a function that accepts
two 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
Method Summary | |
---|---|
long |
applyAsLong(long a,
long b)
Applies this function to the given arguments. |
Method Detail |
---|
long applyAsLong(long a, long b)
a
- the first function argumentb
- the second function argument
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |