|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface LongBinaryOperator
Represents an operation upon two long
-valued operands and producing a
long
-valued result. This is the primitive type specialization of
BinaryOperator
for long
.
Unlike LongLongToLongFunction
, this operator is supposed to accept two homogeneous
arguments and produce a result homogeneous to the arguments, e. g. value merging
in ObjLongMap.merge(Object, long, LongBinaryOperator)
method.
BinaryOperator
,
LongUnaryOperator
Method Summary | |
---|---|
long |
applyAsLong(long left,
long right)
Applies this operator to the given operands. |
Method Detail |
---|
long applyAsLong(long left, long right)
applyAsLong
in interface LongLongToLongFunction
left
- the first operandright
- the second operand
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |