static L filterByExactType(Class c, Iterable l) { new L l2; for (O o : unnull(l)) if (isExactType(o, c)) l2.add((A) o); ret l2; }