static L sorted(Collection c, final O comparator) { L l = cloneList(c); sort(l, makeComparator(comparator)); ret l; } static L sorted(Collection c) { L l = cloneList(c); sort(l); ret l; }