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

assert 0x101u16 ^ 0x110u16 == 0x11u16

Property definitions

core $ UInt16 :: ^
	# Returns the result of a binary XOR operation on `self` and `i`
	#
	#     assert 0x101u16 ^ 0x110u16 == 0x11u16
	fun ^(i: UInt16): UInt16 is intern
lib/core/fixed_ints.nit:453,2--456,35