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

Property definitions

core $ CString :: rshift
	# Right shifts `len` bytes of `self` from `sh` bytes starting at position `pos`
	fun rshift(sh, len, pos: Int) do
		copy_to(self, len, pos, pos + sh)
	end
lib/core/text/native.nit:310,2--313,4