Custom output function naming conventions
Custom output functions are operator-specific routines that can be called from the output clause of an operator.
Follow these naming conventions for custom output functions:
- Write in camel case with the first letter in uppercase, for example DestinationFilePath().
- Indicate an operation or a description of the data that is returned by the function.
One example from the Aggregate operator is Sum(), which returns the sum of all values of a specific tuple attribute in a group. Another example from the DirectoryScan operator is FullPath(), which returns the absolute path name to the file in the directory.