Table of Contents

Constructor Function

Namespace
YndigoBlue.Velocity.Model
Assembly
YndigoBlue.Velocity.dll

Function(FunctionType)

Initializes a new instance of the function with no arguments.

public Function(FunctionType functionType)

Parameters

functionType FunctionType

The type of function to represent.

Function(FunctionType, IElement)

Initializes a new instance of the function with a single element argument.

public Function(FunctionType functionType, IElement element)

Parameters

functionType FunctionType

The type of function to represent.

element IElement

The single element to pass as the function argument.

Function(FunctionType, IEnumerable<IElement>)

Initializes a new instance of the function with a collection of element arguments.

public Function(FunctionType functionType, IEnumerable<IElement> elements)

Parameters

functionType FunctionType

The type of function to represent.

elements IEnumerable<IElement>

The elements to pass as function arguments.

Function(FunctionType, params IElement[])

Initializes a new instance of the function with multiple element arguments. For internal use by derived classes only.

protected Function(FunctionType functionType, params IElement[] elements)

Parameters

functionType FunctionType

The type of function to represent.

elements IElement[]

The elements to pass as function arguments.