scope ai_mechListNamesForAngleBracketCategory. static TimedCache>> #cache = TimedCache(5.0); static Set ai_mechListNamesForAngleBracketCategory(S s) { if (!isAngleBracketed(s)) null; Map> map = cache.get(f newHashMap); s = dropTrailingNumberFromAngleBracketCategory(s); if (map.containsKey(s)) ret map.get(s); // Derive from the category name Set set = litCISet(firstToUpper(plural_mech(replace(deAngleBracket(s), "_", " ")))); set.addAll(mechMultiMapCI("Word category => List").get(s)); map.put(s, set); ret set; } end scope