Class Methods
::
lib/csv/parser.rb
View on GitHub
# File tmp/rubies/ruby-3.0.5/lib/csv/parser.rb, line 710
def initialize(string)
@io = StringIO.new(string, "rb:#{string.encoding}")
end
No documentation available
Instance Methods
lib/csv/parser.rb
View on GitHub
# File tmp/rubies/ruby-3.0.5/lib/csv/parser.rb, line 718
def each_line(*args, &block)
@io.each_line(*args, &block)
end
No documentation available
#
lib/csv/parser.rb
View on GitHub
# File tmp/rubies/ruby-3.0.5/lib/csv/parser.rb, line 722
def eof?
@io.eof?
end
No documentation available
lib/csv/parser.rb
View on GitHub
# File tmp/rubies/ruby-3.0.5/lib/csv/parser.rb, line 714
def gets(*args)
@io.gets(*args)
end
No documentation available