I just want to flip a boolean based on what it already is. If it\'s true - make it false. If it\'s false - make it true.
Here is my code excerpt:
swi
Easiest solution that I found:
x ^= true;