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

assert 0x101i8 ^ 0x110i8 == 0x11i8

Property definitions

core $ Int8 :: ^
	# Returns the result of a binary XOR operation on `self` and `i`
	#
	#     assert 0x101i8 ^ 0x110i8 == 0x11i8
	fun ^(i: Int8): Int8 is intern
lib/core/fixed_ints.nit:211,2--214,31