Reputation: 11908
a ~= b*c; It can't be boolean logic, so what's that?
Upvotes: 1
Views: 705
Reputation:
~
gives the bitwise complement of a single integer....
So it could be that here b and c multiply and then bits of the number get reversed.
Upvotes: 1