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

assert 0x10u32 | 0x01u32 == 0x11u32

Property definitions

core $ UInt32 :: |
	# Returns the result of a binary OR operation on `self` and `i`
	#
	#     assert 0x10u32 | 0x01u32 == 0x11u32
	fun |(i: UInt32): UInt32 is intern
lib/core/fixed_ints.nit:690,2--693,35