static Map mapValues(O func, Map map) { Map m = similarEmptyMap(map); for (O key : keys(map)) m.put(key, callF(func, map.get(key))); ret m; }