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