Increment value for obj term

If the term isn't already in the vector, the new value is 1.0.

Property definitions

vsm $ Vector :: inc
	# Increment value for `obj` term
	#
	# If the term isn't already in the vector, the new value is 1.0.
	fun inc(obj: nullable Object) do
		if has_key(obj) then
			self[obj] += 1.0
		else
			self[obj] = 1.0
		end
	end
lib/vsm/vsm.nit:80,2--89,4