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

assert 0x101u32 ^ 0x110u32 == 0x11u32

Property definitions

core $ UInt32 :: ^
	# Returns the result of a binary XOR operation on `self` and `i`
	#
	#     assert 0x101u32 ^ 0x110u32 == 0x11u32
	fun ^(i: UInt32): UInt32 is intern
lib/core/fixed_ints.nit:695,2--698,35