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