method

scan_all

scan_all(pattern)
public

No documentation available.

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

        return nil if value.nil?
        while @scanner.eos? and read_chunk and (sub_value = @scanner.scan(pattern))
          value << sub_value
        end
        value
      end