i bits shift fo the left

assert 5u8 << 1    == 10u8

Property definitions

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