static L callAll(L l) { L out = emptyList(l); for (O o : unnull(l)) { out.add(call(o)); ifdef callAll_verbose print("l(out)=" + l(out)); endifdef } ret out; }