method
remove_things
ruby latest stable - Class:
RDoc ::ClassModule
remove_things(my_things, other_files)public
No documentation available.
# 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