Package ptolemy.math
Interface FloatUnaryOperation
-
- All Known Implementing Classes:
TestFloatUnaryOperation
public interface FloatUnaryOperation
A operation taking one argument of type float, and producing a value of type float. This interface attempts to mimic a first-class function of a single variable.- 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 float
operate(float operand)
Operate on the operand, returning a value of the same type.
-