value ^= true;
That is value xor-equals true, which will flip it every time, and without any branching or temporary variables.
value ^= true;
That is value xor-equals true, which will flip it every time, and without any branching or temporary variables.