read()
Slurps the remaining rows and returns an Array of Arrays.
The data source must be open for reading.
# File lib/csv.rb, line 1243 def read rows = to_a if parser.use_headers? Table.new(rows, headers: parser.headers) else rows end end