# File lib/faster_csv.rb, line 692
      def each(&block)
        if @mode == :col
          headers.each { |header| block[[header, self[header]]] }
        else
          @table.each(&block)
        end

        self  # for chaining
      end