reject!()
public

No documentation available.

# File activesupport/lib/active_support/descendants_tracker.rb, line 103
      def reject!
        @refs.reject! do |ref|
          yield ref.__getobj__
        rescue WeakRef::RefError
          true
        end
      end