bitXor

bitXor(op: Integer): Integer;

The bitXor method of the Integer primitive type compares each bit in the receiver with the corresponding bit specified in the op parameter, and returns an integer representing the receiver bits XORed with the argument.

The generated return values are listed in the following table.

Bits in Receiver and Operand Corresponding Bit in Return Value
The bits are complementary 1
The bits are not complementary 0