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