Reverse Loop An Array of Structs
So I was trying to figure out how to loop an array of structs backwards. I found ways to loop arrays backwards but it only worked with using the reverse() function and that only works on a list of strings. Something that I was aware of until recently cfloop has a step attribute. So really it just came down like this, pretty simple:
2 <cfdump var="#ArrayofStructs[i]#" abort="true" />
3</cfloop>
This is probably well known, but I wanted a reference so I can use it again later. Hope this helps someone.

