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