method

indexed_rows

rails latest stable - Class: ActiveRecord::Result

Method not available on this version

This method is only available on newer versions. The first available version (v8.0.0) is shown here.

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