Object
# File ruby-3.1.2/lib/csv/parser.rb, line 735 def initialize(string) @io = StringIO.new(string, "rb:#{string.encoding}") end
# File ruby-3.1.2/lib/csv/parser.rb, line 743 def each_line(*args, &block) @io.each_line(*args, &block) end
# File ruby-3.1.2/lib/csv/parser.rb, line 747 def eof? @io.eof? end
# File ruby-3.1.2/lib/csv/parser.rb, line 739 def gets(*args) @io.gets(*args) end
This page was generated for Ruby 3.1.2
Ruby-doc.org is a service of James Britt and Neurogami, purveyors of fine dance noise.
Generated with Ruby-doc Rdoc Generator 0.42.0.