// p = pair("", "word") sbool parsing_checkMatchPairUsingMechList(Pair p) { if (!isAngleBracketed(p.a)) false; Set lists = ai_mechListNamesForAngleBracketCategory(p.a); //print(+listName); for (S listName : lists) { Set entries = mechSetCI(listName); //print("Found " + n2(entries, "entry", "entries") + " for " + listName); if (contains(entries, p.b)) true; } false; }