static L sortByFieldInPlace(L l, S field) { sort(l, fieldComparator(field)); ret l; } static L mapMethodLike sortByFieldInPlace(S field, L l) { ret sortByFieldInPlace(l, field); }