method

remove_things

remove_things(my_things, other_files)
public

No documentation available.

# File lib/rdoc/class_module.rb, line 654
  def remove_things my_things, other_files # :nodoc:
    my_things.delete_if do |file, things|
      next false unless other_files.include? file

      things.each do |thing|
        yield false, thing
      end

      true
    end
  end