Logo

Programming-Idioms

  • Haskell
  • Ruby
  • Pascal
  • Go
  • Java

Idiom #237 Xor integers

Assign to c the result of (a xor b)

int c = a ^ b;
import Data.Bits (xor)
c = xor a b
c = a ^ b
c := 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
int c = a ^ b;

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