Move towards the tail all elements at and after index of displace cells

Property definitions

more_collections $ UnrolledNode :: move_head
	# Move towards the tail all elements at and after `index` of `displace` cells
	fun move_head(index, displace: Int)
	do
		for i in [head_index..head_index+index[ do
			items[i-displace] = items[i]
		end
	end
lib/more_collections/more_collections.nit:642,2--648,4