static L withoutEmpties(Collection l) { new L out; for (S s : unnull(l)) if (nempty(s)) out.add(s); ret out; }