Package ptolemy.math
Interface LongBinaryOperation
-
- All Known Implementing Classes:
TestLongBinaryOperation
public interface LongBinaryOperationA operation taking two operands of type long, and producing a value of type long. This interface attempts to mimic a first-class function of two variables.- Since:
- Ptolemy II 1.0
- Version:
- $Id$
- Author:
- Jeff Tsay
- Pt.AcceptedRating:
- Red (ctsay)
- Pt.ProposedRating:
- Red (ctsay)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description longoperate(long leftOperand, long rightOperand)Operate on the operands, returning a value of the same type.
-