1 | // f: A -> Comparable |
2 | static <A> L<A> sortByCalculatedField(Iterable<A> c, final O f) {
|
3 | L<A> l = cloneList(c); |
4 | sort(l, new Comparator<A>() {
|
5 | public int compare(A a, A b) {
|
6 | ret stdcompare(callF(f, a), callF(f, b)); |
7 | } |
8 | }); |
9 | ret l; |
10 | } |
Began life as a copy of #1006223
download show line numbers debug dex old transpilations
Travelled to 14 computer(s): aoiabmzegqzx, bhatertpkbcr, cbybwowwnfue, cfunsshuasjs, gwrvuhgaqvyk, irmadwmeruwu, ishqpsrjomds, lpdgvwnxivlt, mqqgnosmbjvj, pyentgdyhuwx, pzhvpgtvlbxg, tslmcundralx, tvejysmllsmz, vouqrxazstgt
No comments. add comment
| Snippet ID: | #1006712 |
| Snippet name: | sortByCalculatedField |
| Eternal ID of this version: | #1006712/4 |
| Text MD5: | 550090d8e92ba94ab736939f8f077dfc |
| Author: | stefan |
| Category: | javax |
| Type: | JavaX fragment (include) |
| Public (visible to everyone): | Yes |
| Archived (hidden from active list): | No |
| Created/modified: | 2018-09-02 19:44:42 |
| Source code size: | 259 bytes / 10 lines |
| Pitched / IR pitched: | No / No |
| Views / Downloads: | 833 / 871 |
| Version history: | 3 change(s) |
| Referenced in: | [show references] |