MapGuide API Reference
 All Classes Functions Variables Enumerations Enumerator Friends
symmetric difference

A method of comparing two sets. The symmetric difference of two sets is the set of elements that is in one of either set but not in both.

symmetric difference (A,B) = union(A,B) - intersection(A,B).