# File lib/will_paginate/active_record.rb, line 75
      def size
        if !loaded? and limit_value and group_values.empty?
          [super, limit_value].min
        else
          super
        end
      end