StructAppend (struct1, struct2, overwriteFlag) DescriptionAppends one structure to another and returns true if successful. The overwriteFlag default is Yes and means that data in struct2 will overwrite corresponding data in struct1. Setting it to No will prevent any overwriting. Example<cfset newStruct = StructAppend(exampleStruct1, exampleStruct2)> |