<cffunction name="LoopArguments" access="public" returntype="void" output="true" hint="Iterates over the arguments array."> <!--- Define the local scope. ---> <cfset var LOCAL = {} /> <!--- Iterate over the arguments as if it were an array. ---> <cfloop index="LOCAL.Value" array="#ARGUMENTS#"> <!--- Dump out data element. ---> <cfdump var="[#LOCAL.Value#]" label="ARGUMENTS Data Point" /> </cfloop> <!--- Return out. ---> <cfreturn /> </cffunction>