Class: CSV::Parser::UnoptimizedStringIO
Do not use. This class is for internal use only.
Relationships & Source Files | |
Inherits: | Object |
Defined in: | lib/csv/parser.rb |
Class Method Summary
- .new(string) ⇒ UnoptimizedStringIO constructor
Instance Attribute Summary
- #eof? ⇒ Boolean readonly
Instance Method Summary
Constructor Details
.new(string) ⇒ UnoptimizedStringIO
# File 'lib/csv/parser.rb', line 819
def initialize(string) @io = StringIO.new(string, "rb:#{string.encoding}") end
Instance Attribute Details
#eof? ⇒ Boolean
(readonly)
[ GitHub ]
# File 'lib/csv/parser.rb', line 831
def eof? @io.eof? end
Instance Method Details
#each_line(*args, &block)
[ GitHub ]# File 'lib/csv/parser.rb', line 827
def each_line(*args, &block) @io.each_line(*args, &block) end
#gets(*args)
[ GitHub ]# File 'lib/csv/parser.rb', line 823
def gets(*args) @io.gets(*args) end