This method is deprecated or moved on the latest stable version.
The last existing version (v1_9_3_392) is shown here.
find_unique(all_hash)
public
Finds unique classes/modules defined in all_hash, and returns them
as an array. Performs the alias updates in all_hash: see ::complete.
# File lib/rdoc/top_level.rb, line 191
def self.find_unique(all_hash)
unique = []
all_hash.each_pair do |full_name, cm|
unique << cm if full_name == cm.full_name
end
unique
end