Builds a function with n arguments This method should be sub-classed

Namespace:  SingularSys.Jep
Assembly:  Jep (in Jep.dll) Version: 1.1.0.0 (1.0.0)

Syntax

C#
public ASTFunNode BuildFunctionNode(
	string name,
	IPostfixMathCommand pfmc,
	INode[] arguments
)
Visual Basic (Declaration)
Public Function BuildFunctionNode ( _
	name As String, _
	pfmc As IPostfixMathCommand, _
	arguments As INode() _
) As ASTFunNode
Visual C++
public:
ASTFunNode^ BuildFunctionNode(
	String^ name, 
	IPostfixMathCommand^ pfmc, 
	array<INode^>^ arguments
)

Parameters

name
Type: System..::.String
name of function.
pfmc
Type: SingularSys.Jep..::.IPostfixMathCommand
PostfixMathCommand for function.
arguments
Type: array< SingularSys.Jep.Parser..::.INode >[]()[]
the arguments to the function.

Return Value

top Node of expression

Exceptions

See Also