next | previous | forward | backward | up | top | index | toc | home

findSynonyms(Symbol) -- find synonyms of symbols

Synopsis

Description

i1 : findSynonyms symbol res

o1 = {Core$res, Core$resolution, res, resolution}

o1 : List
i2 : symbol res === symbol resolution

o2 = true
i3 : res === resolution

o3 = true
i4 : res

o4 = resolution

o4 : MethodFunctionWithOptions

Code

-- ../../../../Macaulay2/m2/packages.m2:219-222
findSynonyms Symbol := x -> (
     r := {};
     scan(dictionaryPath, d -> scan(pairs d, (nam,sym) -> if x === sym and getGlobalSymbol nam === sym then r = append(r,nam)));
     sort unique r)

See also