StructEquals()
Performs a deep comparison of two structures to see if they represent the same values
Usage
BOOLEAN = StructEquals(
struct1,
struct2
)
Argument | Summary |
---|---|
struct1 | struct1 |
struct2 | struct2 |
Calling
Supports named-parameter calling allowing you to use the function like:
StructEquals( struct1=?, struct2=? );
Supports passing parameters as a structure using ArgumentCollection:
StructEquals( ArgumentCollection={ struct1 : ?, struct2 : ? } );