static L mapWrap(Iterable l, Class wrapper) { ret map(wrapper, l); } static L mapWrap(Class wrapper, Iterable l) { new L x; for (O o : unnull(l)) x.add(nuObject(wrapper, o)); ret x; }