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

assert 0x101u8 ^ 0x110u8 == 0x11u8

Property definitions

core :: math $ Byte :: ^
	# Returns the result of a binary XOR operation on `self` and `i`
	#
	#     assert 0x101u8 ^ 0x110u8 == 0x11u8
	fun ^(i: Byte): Byte `{ return self ^ i; `}
lib/core/math.nit:195,2--198,44