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

assert 0x101i16 ^ 0x110i16 == 0x11i16

Property definitions

core $ Int16 :: ^
	# Returns the result of a binary XOR operation on `self` and `i`
	#
	#     assert 0x101i16 ^ 0x110i16 == 0x11i16
	fun ^(i: Int16): Int16 is intern
lib/core/fixed_ints.nit:332,2--335,33