'Declaration
Public Function New( _ ByVal minArgsCount As Integer, _ ByVal maxArgsCount As Integer, _ ByVal function As Func(Of List(Of Object),Object), _ ByVal functionType As ItemType _ )
public CustomFunctionDefinition( int minArgsCount, int maxArgsCount, Func<List<object>,object> function, ItemType functionType )
Parameters
- minArgsCount
- Minimum count of function arguments.
- maxArgsCount
- Maximum count of function arguments.
- function
- Function for this definition.
- functionType
- Function type.