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

assert 0x10i8 | 0x01i8 == 0x11i8

Property definitions

core $ Int8 :: |
	# Returns the result of a binary OR operation on `self` and `i`
	#
	#     assert 0x10i8 | 0x01i8 == 0x11i8
	fun |(i: Int8): Int8 is intern
lib/core/fixed_ints.nit:206,2--209,31