Returning an Array
I have a function that is returning an array that is a local variable inside the component... i beleive an array is considered a complex data type so does this mean its going to pass a referenece rather than a copy?
<cfcomponent>
<cfset variables.anArray = NewArray(1) />
<cffunction name="getList" returntype="array">
<cfreturn variables.anArray />
</cffunction>
</cfcomponent>
