Flowdock
method

apply_limits

Importance_0
v6.1.3.1 - Show latest stable - 0 notes - Class: ActiveRecord::Batches
apply_limits(relation, start, finish, order) 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/batches.rb, line 268
      def apply_limits(relation, start, finish, order)
        relation = apply_start_limit(relation, start, order) if start
        relation = apply_finish_limit(relation, finish, order) if finish
        relation
      end
Register or log in to add new notes.