symmetric difference
[Glossary]
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).
symmetric difference (A,B) = union(A,B) - intersection(A,B).