Init self by copying other values.

Property definitions

graph $ PRMap :: from
	# Init `self` by copying `other` values.
	init from(other: PRMap[V]) do
		init
		for k, v in other do self[k] = v
	end
lib/graph/pagerank.nit:69,2--73,4