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