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

assert 0x101 ^ 0x110 == 0x11

Property definitions

core :: math $ Int :: ^
	# Returns the result of a binary XOR operation on `self` and `i`
	#
	#     assert 0x101 ^ 0x110 == 0x11
	fun ^(i: Int): Int `{ return self ^ i; `}
lib/core/math.nit:77,2--80,42