Warning: session_start(): open(/var/lib/php/sessions/sess_6mrku9hqhfd3oo37lv5gtk6l91, O_RDWR) failed: No space left on device (28) in /var/www/tb-usercake/models/config.php on line 51
Warning: session_start(): Failed to read session data: files (path: /var/lib/php/sessions) in /var/www/tb-usercake/models/config.php on line 51
static noeq record IntPair(int a, int b) implements Comparable {
public boolean equals(Object o) {
if (!o instanceof IntPair) false;
IntPair x = cast o;
return a == x.a && b == x.b;
}
public int hashCode() {
int h = -672893111;
h = boostHashCombine(h, _hashCode(a));
h = boostHashCombine(h, _hashCode(b));
return h;
}
public int compareTo(IntPair p) {
if (p == null) ret 1;
int pa = p.a;
if (a < pa) ret -1;
if (a > pa) ret 1;
ret Int.compare(b, p.b);
}
}