# File lib/core/facets/to_hash.rb, line 121
  def to_h_splat
    a = dup
    a << nil if a.size % 2 == 1
    Hash[*a]
  end