method

indexed_rows

indexed_rows()
public

No documentation available.

# File activerecord/lib/active_record/result.rb, line 216
    def indexed_rows # :nodoc:
      @indexed_rows ||= begin
        columns = column_indexes
        @rows.map { |row| IndexedRow.new(columns, row) }.freeze
      end
    end