# File lib/csv.rb, line 567
    def headers
      if @table.empty?
        Array.new
      else
        @table.first.headers
      end
    end