static Map mapWithoutKey(Map map, A key) { if (map == null) null; Map m = cloneMap(map); m.remove(key); ret m; }