static L listMinusToString(Iterable l, S s) { new L out; if (l != null) for (A x : l) if (x == null || neq(x.toString(), s)) out.add(x); ret out; }