static L withoutNulls(L l) { if (!containsNulls(l)) ret l; new L l2; for (A a : l) if (a != null) l2.add(a); ret l2; }