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;
}
static Map mapValues(Map map, IF1 f) {
ret mapValues(f, map);
}
static Map lambdaMapLike mapValues(IF1 f, Map map) {
ret mapValues((O) f, map);
}
static Map mapValues(Map map, O func) {
ret mapValues(func, map);
}