Flowdock
method

find_nth_from_last

Importance_0
v6.0.0 - Show latest stable - 0 notes - Class: ActiveRecord::FinderMethods
find_nth_from_last(index) private

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 526
      def find_nth_from_last(index)
        if loaded?
          records[-index]
        else
          relation = ordered_relation

          if equal?(relation) || has_limit_or_offset?
            relation.records[-index]
          else
            relation.last(index)[-index]
          end
        end
      end
Register or log in to add new notes.