Creates a constant node whose result is the given function applied to the children.

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

Syntax

C#
public ASTConstant BuildConstantNode(
	IPostfixMathCommand pfmc,
	INode[] children
)
Visual Basic (Declaration)
Public Function BuildConstantNode ( _
	pfmc As IPostfixMathCommand, _
	children As INode() _
) As ASTConstant
Visual C++
public:
ASTConstant^ BuildConstantNode(
	IPostfixMathCommand^ pfmc, 
	array<INode^>^ children
)

Parameters

pfmc
Type: SingularSys.Jep..::.IPostfixMathCommand
the function to apply
children
Type: array< SingularSys.Jep.Parser..::.INode >[]()[]
the arguments to the function, each argument should be a constant node.

Return Value

a new constant node

See Also