Interface IFunctionFactory
Interface for all function factories.
Namespace: SpiceSharpParser.Common.Evaluation
Assembly: SpiceSharpParser.dll
Syntax
public interface IFunctionFactory
Methods
| Improve this Doc View SourceCreate(String, List<String>, String)
Creates a new function.
Declaration
IFunction<double, double> Create(string name, List<string> arguments, string functionBodyExpression)
Parameters
Type | Name | Description |
---|---|---|
System.String | name | Name of a function. |
System.Collections.Generic.List<System.String> | arguments | Arguments of a function. |
System.String | functionBodyExpression | Body expression of a function. |
Returns
Type | Description |
---|---|
IFunction<System.Double, System.Double> |