<!--- Using implicit values in methods applies both built-in ColdFusion functions as well as user defined methods. ---> <cfset girl = { name = "Molly", hair = "Brown" } /> <!--- Append new data to girl object. ---> <cfset structAppend( girl, { smile = "Sweet", build = "Petite" } ) /> <!--- Output the updated struct. ---> <cfdump var="#girl#" label="Girl (via Method)" />