I have two bit masks (say A and B, and I want to know which bit of A is 1 where the corresponding B bit is 0 (and viceversa).
Of course this is implementable using conditional statements, but I don't want to iterate/shift for testing all bits of the bit mask.
The logic condition which I need is not implemented (or at least, I can't see it). Using a parallel with the logic gates, I need the operator 'A doesn't imply B' (see on Wikipedia).
Is it possible to implement such operator using AND, OR, XOR operators?