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

assert 0x10i32 | 0x01i32 == 0x11i32

Property definitions

core $ Int32 :: |
	# Returns the result of a binary OR operation on `self` and `i`
	#
	#     assert 0x10i32 | 0x01i32 == 0x11i32
	fun |(i: Int32): Int32 is intern
lib/core/fixed_ints.nit:569,2--572,33