Flowdock
method

find_nth

Importance_0
v4.1.8 - Show latest stable - 0 notes - Class: ActiveRecord::FinderMethods
find_nth(ordinal, 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 464
    def find_nth(ordinal, offset)
      if loaded?
        @records.send(ordinal)
      else
        @offsets[offset] ||= find_nth_with_limit(offset, 1).first
      end
    end
Register or log in to add new notes.