Count and update length of collisions for store

Note for dynamic call-graph analysis: callers of this functions are responsible of collisions.

Property definitions

hash_debug :: hash_debug $ HashCollection :: st_collide
	# Count and update length of collisions for `store`
	# Note for dynamic call-graph analysis: callers of this functions are
	# responsible of collisions.
	fun st_collide(i: Int, n: N)
	do
		var c = _array[i]
		sys.st_coll += 1
		sys.st_tot_coll += 1
		while c != null do
			sys.st_tot_coll += 1
			c = c._next_in_bucklet
		end
	end
lib/hash_debug/hash_debug.nit:179,2--191,4