# File lib/sup/util.rb, line 411
  def map_to_hash
    ret = {}
    each { |x| ret[x] = yield(x) }
    ret
  end