W3cubDocs

/Ruby 2.7

class CSV::Parser::UnoptimizedStringIO

Parent:
Object

Public Class Methods

new(string) Show source
# File lib/csv/parser.rb, line 709
def initialize(string)
  @io = StringIO.new(string)
end

Public Instance Methods

each_line(*args, &block) Show source
# File lib/csv/parser.rb, line 717
def each_line(*args, &block)
  @io.each_line(*args, &block)
end
eof?() Show source
# File lib/csv/parser.rb, line 721
def eof?
  @io.eof?
end
gets(*args) Show source
# File lib/csv/parser.rb, line 713
def gets(*args)
  @io.gets(*args)
end

Ruby Core © 1993–2017 Yukihiro Matsumoto
Licensed under the Ruby License.
Ruby Standard Library © contributors
Licensed under their own licenses.