method

scan

scan(pattern)
public

No documentation available.

# File lib/csv/parser.rb, line 107
      def scan(pattern)
        value = @scanner.scan(pattern)
        return value if @last_scanner

        if value
          read_chunk if @scanner.eos?
          return value
        else
          nil
        end
      end