Returns the list of all the function (tags) defined in the system.
1 system.function.getDefinedFunctions
<system.function.getDefinedFunctions />
Returns | |
---|---|
Type | Description |
map | Result. |
Example
Returns the list of the system functions.
Copy
<xsql-script name='getDefinedFunctions_example'> <body> <iterator name='m_it'> <in> <system.function.getDefinedFunctions /> </in> <do> <println><m_it /></println> </do> </iterator> </body> </xsql-script>