123456789_123456789_123456789_123456789_123456789_

Top Level Namespace

Relationships & Source Files
Namespace Children
Classes:

Instance Method Summary

Instance Method Details

CSV(*args, **options, &block)

Passes args to CSV.instance.

CSV("CSV,data").read
  #=> [["CSV", "data"]]

If a block is given, the instance is passed the block and the return value becomes the return value of the block.

CSV("CSV,data") { |c|
  c.read.any? { |a| a.include?("data") }
} #=> true

CSV("CSV,data") { |c|
  c.read.any? { |a| a.include?("zombies") }
} #=> false

CSV options may also be given.

io = StringIO.new
CSV(io, col_sep: ";") { |csv| csv << ["a", "b", "c"] }

This API is not Ractor-safe.

[ GitHub ]

  
# File 'lib/csv.rb', line 2876

def CSV(*args, **options, &block)
  CSV.instance(*args, **options, &block)
end