List<String> A = new List<String>();
List<String> B = new List<String>();
List<String> itemsremoved = ((A∩B)^c)-A;
List<String> itemsadded = ((A∩B)^c)-B;
I want to know how to do a complement of the union A & B minus the elements of a list. Is there a function to do this?