i bits shift fo the right

assert 5u8 >> 1    == 2u8

Property definitions

core $ Byte :: >>
	# `i` bits shift fo the right
	#
	#     assert 5u8 >> 1    == 2u8
	fun >>(i: Int): Byte is intern `{ return self >> i; `}
lib/core/kernel.nit:649,2--652,55