Logo

Programming-Idioms

  • Python
  • Smalltalk
  • C#
  • D
  • Rust

Idiom #237 Xor integers

Assign to c the result of (a xor b)

int c = a ^ b;

The ^ operator may be overloaded by types.
c = a ^ b
let c = a ^ b;
int c = a ^ b;

New implementation...
< >
programming-idioms.org