scope ai_antiMechListNamesForAngleBracketCategory. // TODO: clean on language change static TimedCache>> #cache = TimedCache(5.0); static Set ai_antiMechListNamesForAngleBracketCategory(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 - use LinkedHashSet to keep first Set set = litorderedset(mechLanguagePrefix() + "Not " + plural_mech(replace(deAngleBracket(s), "_", " "))); //set.addAll(mechMultiMapCI(mechLanguagePrefix() + "Word category => List").get(s)); map.put(s, set); ret set; } end scope