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/store.rb, line 435
def find_unique all_hash
unique = []
all_hash.each_pair do |full_name, cm|
unique << cm if full_name == cm.full_name
end
unique
end