# File lib/em-http/core_ext/hash.rb, line 44 def self.from_array(array = []) h = Hash.new array.size.times do |t| h[t] = array[t] end h end