Libraryless. Click here for Pure Java version (7871L/44K).
static class Pair<A, B> implements 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/7 |
Text MD5: | e0901badc04b6e915be310816bcac15f |
Transpilation MD5: | 180b183114f12a482123ddef45167682 |
Author: | stefan |
Category: | javax |
Type: | JavaX fragment (include) |
Public (visible to everyone): | Yes |
Archived (hidden from active list): | No |
Created/modified: | 2022-04-13 12:19:36 |
Source code size: | 621 bytes / 29 lines |
Pitched / IR pitched: | No / No |
Views / Downloads: | 638 / 6866 |
Version history: | 6 change(s) |
Referenced in: | #1012602 - PairIC - case-insensitive string pair - doesn't work - how to make hashCode? #1016582 - Global Utils (stuff in here gets moved to x30_pkg.x30_util.*) #1034167 - Standard Classes + Interfaces (LIVE, continuation of #1003674) |