static Map mapToValues(Iterable l, O f) { ret mapKeyAndFunction(l, f); } static Map mapLike mapToValues(O f, Iterable l) { ret mapKeyAndFunction(f, l); } static Map mapToValues(Iterable l, IF1 f) { ret mapKeyAndFunction(f, l); } static Map mapToValues(IF1 f, Iterable l) { ret mapKeyAndFunction(f, l); } static Map mapToValues(Map map, IF2 f) { ret mapKeyAndFunction(map, f); }