static L sortedInPlace(L l, final O comparator) { sort(l, makeComparator(comparator)); ret l; } static L sortedInPlace(L l) { sort(l); ret l; }