method
remove_things
v2_1_10 -
Show latest stable
- Class:
RDoc::ClassModule
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