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

assert 0x10u8 | 0x01u8 == 0x11u8

Property definitions

core :: math $ Byte :: |
	# Returns the result of a binary OR operation on `self` and `i`
	#
	#     assert 0x10u8 | 0x01u8 == 0x11u8
	fun |(i: Byte): Byte `{ return self | i; `}
lib/core/math.nit:190,2--193,44