static Map mapToValues_treeMap(Iterable l, O f) {
ret mapToValues_treeMap(f, l);
}
static Map mapLike mapToValues_treeMap(O f, Iterable l) {
new TreeMap map;
if (l != null) for (O o : l)
map.put(o, callF(f, o));
ret map;
}
static Map mapToValues_treeMap(Iterable l, IF1 f) {
ret mapToValues_treeMap(f, l);
}