Collapses the row into a simple Hash. Be warning
that this discards field order and
clobbers duplicate fields.
# File lib/csv.rb, line 475
def to_hash
# flatten just one level of the internal Array
Hash[*@row.inject(Array.new) { |ary, pair| ary.push(*pair) }]
end