static Map makeMap(O f, Collection c) { new HashMap map; for (O o : unnull(c)) { O y = callF(f, o); if (y != null) map.put(o, y); } ret map; }