static L shortenAll(int max, Collection l) { new L l2; if (l != null) for (S s : l) l2.add(shorten(s, max)); ret l2; }