static S joinWithComma_specialLast(L l, S lastSep) { if (empty(l)) ret ""; L separators = rep(", ", l(l)-2); separators.add(lastSep); ret join_flex(separators, l); }