static L lambdaMapLike sortedBy(IF1 f, Iterable c) { ret sortedBy(c, f); } static L sortedBy(Iterable c, IF1 f) { L l = cloneList(c); sort(l, new Comparator() { public int compare(A a, A b) { ret stdcompare(f.get(a), f.get(b)); } }); ret l; }