# File lib/faster_csv.rb, line 1554
    def read
      rows = to_a
      if @use_headers
        Table.new(rows)
      else
        rows
      end
    end