Logo

Programming-Idioms

  • Go

Idiom #237 Xor integers

Assign to c the result of (a xor b)

import "math/big"
c := new(big.Int)
c.Xor(a, b)

a, b, c have big integer type *big.Int
c := a ^ b

a, b, c have the same integer type (signed or unsigned)
int c = a ^ b;

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