# File lib/map.rb, line 215
  def initialize_from_array(array)
    map = self
    Map.each_pair(array){|key, val| map[key] = val}
  end