Skip to content

Instantly share code, notes, and snippets.

@shiftregister-vg
Created November 4, 2011 20:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shiftregister-vg/1340409 to your computer and use it in GitHub Desktop.
Save shiftregister-vg/1340409 to your computer and use it in GitHub Desktop.
Wishful thinking: cfeach tag
<cfeach in="#myCollection#" var="myItem">
<cfset myItem.doStuff() />
</cfeach>
<cfscript>
each(myCollection,function(myItem){
myItem.doStuff();
}
</cfscript>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment