NumericEvaluator 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 NumericEvaluator class.
public NumericEvaluator (string type, Func<System.Collections.Generic.IReadOnlyList<object>,object> function);
new AdaptiveExpressions.BuiltinFunctions.NumericEvaluator : string * Func<System.Collections.Generic.IReadOnlyList<obj>, obj> -> AdaptiveExpressions.BuiltinFunctions.NumericEvaluator
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 numeric function, it takes a list of objects as input and returns an object.