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

assert 0x10i16 | 0x01i16 == 0x11i16

Property definitions

core $ Int16 :: |
	# Returns the result of a binary OR operation on `self` and `i`
	#
	#     assert 0x10i16 | 0x01i16 == 0x11i16
	fun |(i: Int16): Int16 is intern
lib/core/fixed_ints.nit:327,2--330,33