StructAppend()
Appends all the data from struct2 into struct1, replacing duplicate keys unless specified by the overwrite flag
Usage
BOOLEAN = StructAppend(
struct1,
struct2,
overwrite
)
Argument | Summary |
---|---|
struct1 | struct1 |
struct2 | struct2 |
overwrite | overwrite - default true [optional] |
Calling
Supports named-parameter calling allowing you to use the function like:
StructAppend( struct1=?, struct2=?, overwrite=? );
Supports passing parameters as a structure using ArgumentCollection:
StructAppend( ArgumentCollection={ struct1 : ?, struct2 : ?, overwrite : ? } );