static S joinQuoted(S sep, Collection c) { new L l; for (S s : c) l.add(quote(s)); ret join(sep, l); }