Class FunctionFactory
Inheritance
System.Object
FunctionFactory
Implements
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: SpiceSharpParser.Common.Evaluation
Assembly: SpiceSharpParser.dll
Syntax
public class FunctionFactory : IFunctionFactory
Methods
| Improve this Doc View SourceCreate(String, List<String>, String)
Creates a new function.
Declaration
public 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> |