Sha256: a28474aa48aa26498c169a75aaa196cc943cb538df6941bc9861005e777c03e3

Contents?: true

Size: 203 Bytes

Versions: 14

Compression:

Stored size: 203 Bytes

Contents

class Array # :nodoc:
  # 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

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
csv-3.1.1 lib/csv/core_ext/array.rb
csv-3.1.0 lib/csv/core_ext/array.rb
csv-3.0.9 lib/csv/core_ext/array.rb
csv-3.0.8 lib/csv/core_ext/array.rb
csv-3.0.7 lib/csv/core_ext/array.rb
csv-3.0.6 lib/csv/core_ext/array.rb
csv-3.0.5 lib/csv/core_ext/array.rb
csv-3.0.4 lib/csv/core_ext/array.rb
csv-3.0.3 lib/csv/core_ext/array.rb
csv-3.0.2 lib/csv/core_ext/array.rb
csv-3.0.1 lib/csv/core_ext/array.rb
csv-3.0.0 lib/csv/core_ext/array.rb
csv-1.0.2 lib/csv/core_ext/array.rb
csv-1.0.1 lib/core_ext/array.rb