Method: ActiveSupport::DescendantsTracker::DescendantsArray#reject!

Defined in:
lib/active_support/descendants_tracker.rb

#reject!Object



103
104
105
106
107
108
109
# File 'lib/active_support/descendants_tracker.rb', line 103

def reject!
  @refs.reject! do |ref|
    yield ref.__getobj__
  rescue WeakRef::RefError
    true
  end
end