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