findSynonyms x
|
|
|
|
../../../../../Macaulay2/m2/document.m2:801:25-805:16: --source code:
findSynonyms Symbol := x -> (
result := {};
scan(dictionaryPath, dict -> scan(pairs dict, (name, symb) ->
if x === symb and getGlobalSymbol name === symb then result = append(result, name)));
sort unique result)