method

scan_all

ruby latest stable - Class: CSV::Parser::InputsScanner

Method not available on this version

This method is only available on newer versions. The first available version (v2_6_3) is shown here.

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