static L map_pcall(Iterable l, O f) { ret map_pcall(f, l); } static L map_pcall(O f, Iterable l) { new L x; for (O o : unnull(l)) pcall { x.add(callF(f, o)); } ret x; }