On this page
class CSV::Parser::Scanner
Public Class Methods
# File lib/csv/parser.rb, line 21
def initialize(*args)
  super
  @keeps = []
end
       Calls superclass method 
     StringScanner::new
      Public Instance Methods
# File lib/csv/parser.rb, line 26
def each_line(row_separator)
  position = pos
  rest.each_line(row_separator) do |line|
    position += line.bytesize
    self.pos = position
    yield(line)
  end
end# File lib/csv/parser.rb, line 44
def keep_back
  self.pos = @keeps.pop
end# File lib/csv/parser.rb, line 48
def keep_drop
  @keeps.pop
end# File lib/csv/parser.rb, line 39
def keep_end
  start = @keeps.pop
  string[start, pos - start]
end# File lib/csv/parser.rb, line 35
def keep_start
  @keeps.push(pos)
endRuby Core © 1993–2017 Yukihiro Matsumoto
Licensed under the Ruby License.
Ruby Standard Library © contributors
Licensed under their own licenses.