Returns the result of a binary XOR operation on self and i

assert 0x101i32 ^ 0x110i32 == 0x11i32

Property definitions

core $ Int32 :: ^
	# Returns the result of a binary XOR operation on `self` and `i`
	#
	#     assert 0x101i32 ^ 0x110i32 == 0x11i32
	fun ^(i: Int32): Int32 is intern
lib/core/fixed_ints.nit:574,2--577,33