# File lib/core/facets/enumerable/hashify.rb, line 130
    def concat
      h = {}
      each do |k,*v|
        h[k] ||= []
        h[k].concat(v)
      end
      h
    end