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"
2308 2309 2310 |
# File 'lib/csv.rb', line 2308 def to_csv( = Hash.new) CSV.generate_line(self, ) end |