class RDoc::Store

def find_unique all_hash

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