static L c_collect(Collection l, S field) { new L out; if (l != null) for (O o : l) out.add(cget(o, field)); ret out; }