Libraryless. Click here for Pure Java version (10033L/55K).
sclass Pair<A, B> is Comparable<Pair<A, B>> { settable A a; settable B b; *() {} *(A *a, B *b) {} public int hashCode() { ret hashCodeFor(a) + 2*hashCodeFor(b); } public bool equals(O o) { if (o == this) true; if (!(o instanceof Pair)) false; Pair t = (Pair) o; ret eq(a, t.a) && eq(b, t.b); } toString { ret "<" + a + ", " + b + ">"; } public int compareTo(Pair<A, B> p) { if (p == null) ret 1; int i = ((Comparable<A>) a).compareTo(p.a); if (i != 0) ret i; ret ((Comparable<B>) b).compareTo(p.b); } }
Began life as a copy of #1004216
download show line numbers debug dex old transpilations
Travelled to 24 computer(s): aoiabmzegqzx, bhatertpkbcr, cbybwowwnfue, cfunsshuasjs, ddnzoavkxhuk, ekrmjmnbrukm, gwrvuhgaqvyk, imzmzdywqqli, irmadwmeruwu, ishqpsrjomds, jtubtzbbkimh, lpdgvwnxivlt, mowyntqkapby, mqqgnosmbjvj, onxytkatvevr, ppjhyzlbdabe, pyentgdyhuwx, pzhvpgtvlbxg, sawdedvomwva, tslmcundralx, tvejysmllsmz, vouqrxazstgt, wtqryiryparv, xrpafgyirdlv
No comments. add comment
| Snippet ID: | #1004219 |
| Snippet name: | Pair - value pair; sorted by a, then b |
| Eternal ID of this version: | #1004219/8 |
| Text MD5: | a731704eb92cc41b604376001c1a454e |
| Transpilation MD5: | cf56c2ac8aa898d5a5d69740efc41ec8 |
| Author: | stefan |
| Category: | javax |
| Type: | JavaX fragment (include) |
| Public (visible to everyone): | Yes |
| Archived (hidden from active list): | No |
| Created/modified: | 2023-01-22 12:10:13 |
| Source code size: | 607 bytes / 29 lines |
| Pitched / IR pitched: | No / No |
| Views / Downloads: | 1824 / 8284 |
| Version history: | 7 change(s) |
| Referenced in: | [show references] |