StructEquals
Last updated
Was this helpful?
Tests equality between two structs
StructEquals(struct1=[structloose], struct2=[structloose])struct1
struct
true
The reference struct
struct2
struct
true
The struct to test for equality
config1 = {
A : 0,
B : 0
};
config2 = {
A : 0,
B : 1
};
writeOutput( structEquals( config1, config2 ) );
Result: NO
Last updated
Was this helpful?
Was this helpful?
