Init self with the content of map.

Property definitions

nitc $ FlowHashMap :: from
	# Init `self` with the content of `map`.
	init from(map: Map[K, V]) do
		init
		for k, v in map do self[k] = v
	end
src/saf/saf_base.nit:105,2--109,4