method

find_nth

find_nth(ordinal, offset)
protected

No documentation available.

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