static L unlistedCopies(Class c) { ret unlistedCopies(list(c)); } static L unlistedCopies(Collection c) { new L l; for (A a : unnull(c)) l.add(unlistedCopy(a)); ret l; }