method
find_nth
v4.1.8 -
Show latest stable
- Class:
ActiveRecord::FinderMethods
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