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

assert 0x10 | 0x01 == 0x11

Property definitions

core :: math $ Int :: |
	# Returns the result of a binary OR operation on `self` and `i`
	#
	#     assert 0x10 | 0x01 == 0x11
	fun |(i: Int): Int is intern `{ return self | i; `}
lib/core/math.nit:72,2--75,52