Logo

Programming-Idioms

  • Fortran
  • Go
  • Perl

Idiom #237 Xor integers

Assign to c the result of (a xor b)

c := a ^ b

a, b, c have the same integer type (signed or unsigned)
import "math/big"
c := new(big.Int)
c.Xor(a, b)

a, b, c have big integer type *big.Int
c = ieor(a,b)
my $c = $a ^ $b;
int c = a ^ b;

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