User Guide

360 CFML Language Reference
GetFunctionList
Returns a structure of functions that are available in ColdFusion.
Syntax GetFunctionList(
)
Examples <!---------------------------------------------------------------
The following code displays a list of ColdFusion functions.
----------------------------------------------------------------->
<CFSET fList = GetFunctionList()>
<CFOUTPUT>#StructCount(fList)# functions<BR><BR></CFOUTPUT>
<cfloop collection="#fList#" item="key">
<CFOUTPUT>#key#<BR></CFOUTPUT>
</cflooP>