Flowdock
method

find_nth

Importance_0
v4.2.9 - Show latest stable - 0 notes - Class: ActiveRecord::FinderMethods
find_nth(index, offset) protected

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activerecord/lib/active_record/relation/finder_methods.rb, line 479
    def find_nth(index, offset)
      if loaded?
        @records[index]
      else
        offset += index
        @offsets[offset] ||= find_nth_with_limit(offset, 1).first
      end
    end
Register or log in to add new notes.