static L identifiersOnly(Collection l) { new L out; for (S a : unnull(l)) if (isIdentifier(a)) out.add(a); ret out; }