Implements a list filled with standard functions.
Extends: FunctionCollection
Description
The DefaultFunctionCollection class allows you to implement a list filled with standard functions.
Constructors
Constructs a list and fills it with the standard functions.
DefaultFunctionCollection()
Instance methods
checkParamCount
Checks if params contains the correct number of function parameters (must be stored on the top of the params).
void checkParamCount(List<Variant> params, int expectedParamCount)
- params: List<Variant> - list of function parameters.
- expectedParamCount: int - expected number of function parameters.
getParameter
Gets a function’s parameter by it’s index.
- params: Variant - list of function parameters.
- paramIndex: int - index for the function parameter (0 for the first parameter).
- returns: Variant - function’s parameter value.