class CSV::Parser::UnoptimizedStringIO

Parent:
Object

Public Class Methods

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

Public Instance Methods

each_line(*args, &block) Show source
# File lib/csv/parser.rb, line 673
def each_line(*args, &block)
  @io.each_line(*args, &block)
end
eof?() Show source
# File lib/csv/parser.rb, line 677
def eof?
  @io.eof?
end
gets(*args) Show source
# File lib/csv/parser.rb, line 669
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.