Set v the value associated to the keys k1 and k2.

Property definitions

more_collections $ HashMap2 :: []=
	# Set `v` the value associated to the keys `k1` and `k2`.
	fun []=(k1: K1, k2: K2, v: V)
	do
		var level1 = self.level1
		var level2 = level1.get_or_null(k1)
		if level2 == null then
			level2 = new HashMap[K2, V]
			level1[k1] = level2
		end
		level2[k2] = v
	end
lib/more_collections/more_collections.nit:160,2--170,4