public interface IntegerBinaryOperation
Modifier and Type | Method and Description |
---|---|
int |
operate(int leftOperand,
int rightOperand)
Operate on the operands, returning a value of the same
type.
|
int operate(int leftOperand, int rightOperand)
leftOperand
- The left operand.rightOperand
- The right operand.