static L withoutQuoted(Iterable l) { if (!containsNulls(l)) ret l; new L l2; if (l != null) for (S s : l) if (!isQuoted(s)) l2.add(s); ret l2; }