Take-Differential-Sets
Command Description
Merge different elements in the sets and return the merged results as a new set
Command Prototype
objSetRet = Set.Symmetric_Difference(ObjSet,ObjSet1)
Parameter Description
Parameter | Required | Type | Default | Description |
---|---|---|---|---|
ObjSet | True | expression | ObjSet | The set object to operate on |
ObjSet1 | True | expression | ObjSet1 | The sets to compare for intersections |
return
objSetRet,The variable used to save the output of the command.
Demo
Dim ObjSet
Dim ObjSet1
Dim objSetRet
ObjSet = Set.Create()
Set.Add(ObjSet,1)
Set.Add(ObjSet,2)
Set.Add(ObjSet,3)
// ObjSet = {1,2,3}
ObjSet1 = Set.Create()
Set.Add(ObjSet1,1)
Set.Add(ObjSet1,2)
Set.Add(ObjSet1,3)
Set.Add(ObjSet1,4)
// ObjSet1 = {1,2,3,4}
objSetRet = Set.Symmetric_Difference(ObjSet,ObjSet1)
TracePrint(objSetRet)
/**
objSetRet = {4}
*/