static L llNotNulls(A... a) { ArrayList l = new(a.length); if (a != null) for (A x : a) if (x != null) l.add(x); ret l; }