Current File : //opt/alt/ruby34/share/gems/gems/csv-3.3.2/lib/csv/core_ext/array.rb
class Array
# Equivalent to CSV::generate_line(self, options)
#
# ["CSV", "data"].to_csv
# #=> "CSV,data\n"
def to_csv(**options)
CSV.generate_line(self, **options)
end
end