Class Methods
::
lib/csv/parser.rb
View on GitHub
# File tmp/rubies/ruby-2.6.10/lib/csv/parser.rb, line 665
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.6.10/lib/csv/parser.rb, line 673
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.6.10/lib/csv/parser.rb, line 677
def eof?
@io.eof?
end
No documentation available
lib/csv/parser.rb
View on GitHub
# File tmp/rubies/ruby-2.6.10/lib/csv/parser.rb, line 669
def gets(*args)
@io.gets(*args)
end
No documentation available