BitField1 = 00100110
BitField2 = 00110011
((BitField1 & ~BitField2) | (BitField2 & ~BitField1)); = 00010101
So this is the long version of a common bitwise operation, what is it?
Want to understand if above bit operation is some known operation ?