method

find_nth

find_nth(index, offset)
protected

No documentation available.

# File activerecord/lib/active_record/relation/finder_methods.rb, line 491
    def find_nth(index, offset)
      if loaded?
        @records[index]
      else
        offset += index
        @offsets[offset] ||= find_nth_with_limit(offset, 1).first
      end
    end