static L notNullOnly(L l) { new L out; for (A a : unnull(l)) if (a != null) out.add(a); ret out; } static L notNullOnly(A... l) { ret notNullOnly(asList(l)); }