Builds a function with n arguments and same fun as specified in arguments.

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

Syntax

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

Parameters

node
Type: SingularSys.Jep.Parser..::.ASTFunNode
the properties (name and pfmc) of this node will be copied.
arguments
Type: array< SingularSys.Jep.Parser..::.INode >[]()[]
the arguments to the function.

Return Value

top Node of expression

Exceptions

See Also