method

reject!

rails latest stable - Class: ActiveSupport::DescendantsTracker::DescendantsArray
reject!()
public

No documentation available.

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