I have two NSArrays A and B that share some common elements, e.g.
A: 1,2,3,4,5
B: 4,5,6,7
I would like to create a new NSArray consisting of the contents common between the two NSArrays joined with the contents of the second NSArray while maintaining the order of the elements and removing duplicates. That is, I would like (A ∩ B) ∪ B.
The operation on the previous NSArrays would yield:
A ∩ B: 4,5
(A ∩ B) ∪ B: 4,5,6,7
How do I accomplish this in Objective-C?