NumberTransformEvaluator Constructor
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of the NumberTransformEvaluator class.
public NumberTransformEvaluator (string type, Func<System.Collections.Generic.IReadOnlyList<object>,object> function);
new AdaptiveExpressions.BuiltinFunctions.NumberTransformEvaluator : string * Func<System.Collections.Generic.IReadOnlyList<obj>, obj> -> AdaptiveExpressions.BuiltinFunctions.NumberTransformEvaluator
Public Sub New (type As String, function As Func(Of IReadOnlyList(Of Object), Object))
Parameters
- type
- String
Name of the function.
- function
- Func<IReadOnlyList<Object>,Object>
The number tranform function, it takes a list of objects as input and returns an object.