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