[Solved] What is the ^= operator? [closed]
This is the C/C++/C#/Java/Javascript/Perl/PHP/Pike bitwise XOR assignment operator. An XOR (exclusive or) conditional statement evaluates to true if and only if one of the two operands involved is true. Example: 0 ^ 0 = false 1 ^ 0 = true 0 ^ 1 = true 1 ^ 1 = false //Regular OR would evaluate this … Read more