Method: Array#to_csv
- Defined in:
- lib/csv.rb
#to_csv(options = Hash.new) ⇒ Object
Equivalent to CSV::generate_line(self, options)
["CSV", "data"].to_csv
#=> "CSV,data\n"
2328 2329 2330 |
# File 'lib/csv.rb', line 2328 def to_csv( = Hash.new) CSV.generate_line(self, ) end |