static <A> L<A> sortedByComparator(Collection<A> l, Comparator<A> c) { L<A> l2 = cloneList(l); sort(l2, c); ret l2; } static <A> L<A> sortedByComparator(Comparator<A> c, Collection<A> l) { ret sortedByComparator(l, c); }
Began life as a copy of #1006223
download show line numbers debug dex old transpilations
Travelled to 17 computer(s): aoiabmzegqzx, bhatertpkbcr, cbybwowwnfue, cfunsshuasjs, ekrmjmnbrukm, gwrvuhgaqvyk, irmadwmeruwu, ishqpsrjomds, lpdgvwnxivlt, mqqgnosmbjvj, onxytkatvevr, pyentgdyhuwx, pzhvpgtvlbxg, tslmcundralx, tvejysmllsmz, vouqrxazstgt, whxojlpjdney
No comments. add comment
Snippet ID: | #1014662 |
Snippet name: | sortedByComparator |
Eternal ID of this version: | #1014662/2 |
Text MD5: | 8b595afd54f0c81d7c209e05bbf935a3 |
Author: | stefan |
Category: | javax |
Type: | JavaX fragment (include) |
Public (visible to everyone): | Yes |
Archived (hidden from active list): | No |
Created/modified: | 2018-11-15 03:28:41 |
Source code size: | 233 bytes / 9 lines |
Pitched / IR pitched: | No / No |
Views / Downloads: | 479 / 890 |
Version history: | 1 change(s) |
Referenced in: | #1006654 - Standard functions list 2 (LIVE, continuation of #761) #1015106 - sortedByMapLookupDesc |