Class Methods
::
lib/csv/parser.rb
View on GitHub
# File tmp/rubies/ruby-2.7.6/lib/csv/parser.rb, line 709
def initialize(string)
@io = StringIO.new(string)
end
No documentation available
Instance Methods
lib/csv/parser.rb
View on GitHub
# File tmp/rubies/ruby-2.7.6/lib/csv/parser.rb, line 717
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-2.7.6/lib/csv/parser.rb, line 721
def eof?
@io.eof?
end
No documentation available
lib/csv/parser.rb
View on GitHub
# File tmp/rubies/ruby-2.7.6/lib/csv/parser.rb, line 713
def gets(*args)
@io.gets(*args)
end
No documentation available