- Set AllFunctions
AllFunctions
The predefined set AllFunctions contains the names of all functions
defined within an AIMMS model.
Set AllFunctions {
SubsetOf : AllIdentifiers;
Index : IndexFunctions;
}
Definition
The contents of the set
AllFunctionsis the collection of all function names defined within a particular model.
Updatability
The contents of the set can only be modified by adding or deleting functions in the Model Explorer.
Note
Elements of the set AllFunctions are typically used in conjunction
with the APPLY statement, to allow data-driven evaluation of
functional expressions.
See also
- The sets
AllIdentifiers. Functions are discussed in Internal Functions of the Language Reference, the
APPLYstatement in The APPLY Operator.