![]() |
bcParserObjC
1.1
Math Parser for Objective C, iOS and OSX
|
Parameter protocol represents a parameter that is passed into a user defined function. More...
Instance Methods | |
| (double) | - getValue |
| Return the value for the parameter. More... | |
Parameter protocol represents a parameter that is passed into a user defined function.
Parameter values are not calculated until getValue method is called. This makes it possible to have a function like IF(true, x, x/0) which does not fail with division by zero because x/0 is never evaluated (getValue (Parameter-p) is not called for it).
| - (double) getValue |
Return the value for the parameter.
The value may be a NSNumber or NSString.
1.8.5