static L appendToAll(Collection l, S s) { new L out; for (S x : unnull(l)) out.add(x + s); ret out; } static L appendToAll(S s, Collection l) { ret appendToAll(l, s); }