static LinkedHashMap mapKeyAndFunction_lhm(Iterable l, O f) { ret mapKeyAndFunction_lhm(f, l); } static LinkedHashMap mapKeyAndFunction_lhm(O f, Iterable l) { new LinkedHashMap map; if (l != null) for (O o : l) map.put(o, callF(f, o)); ret map; }