класс CSV::Parser::UnoptimizedStringIO
Публичные методы класса
# File lib/csv/parser.rb, line 735
def initialize(string)
@io = StringIO.new(string, "rb:#{string.encoding}")
end Публичные методы экземпляра
# File lib/csv/parser.rb, line 743 def each_line(*args, &block) @io.each_line(*args, &block) end
# File lib/csv/parser.rb, line 747 def eof? @io.eof? end
# File lib/csv/parser.rb, line 739 def gets(*args) @io.gets(*args) end
Ruby Core © 1993–2022 Yukihiro Matsumoto
Licensed under the Ruby License.
Ruby Standard Library © contributors
Licensed under their own licenses.