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