static Collection nlLogic_certainOperatorArgs(L l, S... operators) { HashSet set = lithashset(operators); new LinkedHashSet out; for (Exp e : unnull(l)) { if (e cast Func) if (set.contains(e.name)) out.add(nlLogic_text(e.arg)); } ret out; }