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