Pop-Out
<cfset thing = StructNew() />
<cfset thing.ThisOneFirst = 1 />
<cfset thing["ThisOneSecond"] = 2 />
<cfset StructInsert(thing,"ThisOneLast",3) />
<cfdump var="#thing#" />
Cut-N-Paste
<cfset thing = StructNew() /> <cfset thing.ThisOneFirst = 1 /> <cfset thing["ThisOneSecond"] = 2 /> <cfset StructInsert(thing,"ThisOneLast",3) /> <cfdump var="#thing#" />