static L allToString(Iterable c) { new L l; for (O o : unnull(c)) l.add(str(o)); ret l; } static L allToString(O[] c) { new L l; for (O o : unnull(c)) l.add(str(o)); ret l; }