static Map mapMinusKeysOfOtherMap(Map map, Map map2) { Map m2 = cloneMap(map); for (O key : keys(map2)) m2.remove(key); ret m2; }