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

assert 0x10u16 | 0x01u16 == 0x11u16

Property definitions

core $ UInt16 :: |
	# Returns the result of a binary OR operation on `self` and `i`
	#
	#     assert 0x10u16 | 0x01u16 == 0x11u16
	fun |(i: UInt16): UInt16 is intern
lib/core/fixed_ints.nit:448,2--451,35