Left shifts len bytes of self from sh bytes starting at position pos

Property definitions

core $ CString :: lshift
	# Left shifts `len` bytes of `self` from `sh` bytes starting at position `pos`
	fun lshift(sh, len, pos: Int) do
		copy_to(self, len, pos, pos - sh)
	end
lib/core/text/native.nit:315,2--318,4