to_csv(**options)
Returns the row as a CSV String. Headers are not used. Equivalent to:
csv_row.fields.to_csv( options )
# File lib/csv.rb, line 544 def to_csv(**options) fields.to_csv(options) end