1 | static <A> L<A> sortedByFields(Collection<A> c, final S... fields) { |
2 | L<A> l = new ArrayList(c); |
3 | sort(l, new Comparator<A>() { |
4 | public int compare(A a, A b) { |
5 | for (S field : fields) { |
6 | int x = cmp(getOpt(a, field), getOpt(b, field)); |
7 | if (x != 0) ret x; |
8 | } |
9 | ret 0; |
10 | } |
11 | }); |
12 | ret l; |
13 | } |
Began life as a copy of #1002452
download show line numbers debug dex old transpilations
Travelled to 13 computer(s): aoiabmzegqzx, bhatertpkbcr, cbybwowwnfue, cfunsshuasjs, gwrvuhgaqvyk, ishqpsrjomds, lpdgvwnxivlt, mqqgnosmbjvj, pyentgdyhuwx, pzhvpgtvlbxg, tslmcundralx, tvejysmllsmz, vouqrxazstgt
No comments. add comment
Snippet ID: | #1015687 |
Snippet name: | sortedByFields |
Eternal ID of this version: | #1015687/3 |
Text MD5: | 68ef0cb368f23261c02f87f9d6b375b9 |
Author: | stefan |
Category: | javax |
Type: | JavaX fragment (include) |
Public (visible to everyone): | Yes |
Archived (hidden from active list): | No |
Created/modified: | 2018-05-21 16:27:39 |
Source code size: | 335 bytes / 13 lines |
Pitched / IR pitched: | No / No |
Views / Downloads: | 410 / 441 |
Version history: | 2 change(s) |
Referenced in: | [show references] |