static L elementsNotInMap(Collection c, Map map) { new L l; if (c != null) for (A a : c) if (!map.containsKey(a)) l.add(a); ret l; }