Flowdock
method

remove_things

Importance_0
Ruby latest stable (v2_5_5) - 0 notes - Class: RDoc::ClassModule
remove_things(my_things, other_files) public

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/rdoc/class_module.rb, line 657
  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
Register or log in to add new notes.