[]
Initializes a new instance of the CustomFunctionDefinition class.
public CustomFunctionDefinition(int minArgsCount, int maxArgsCount, Func<List<object>, object> function, ItemType functionType)
Public Sub New(minArgsCount As Integer, maxArgsCount As Integer, [function] As Func(Of List(Of Object), Object), functionType As ItemType)
| Type | Name | Description |
|---|---|---|
| int | minArgsCount | Minimum count of function arguments. |
| int | maxArgsCount | Maximum count of function arguments. |
| Func<List<object>, object> | function | Function for this definition. |
| ItemType | functionType | Function type. |