54555657585960616263
if (!(o instanceof IntIntPair)) { return false; } IntIntPair that = (IntIntPair) o; return (this.one == that.getOne()) && (this.two == that.getTwo()); }
298329842985298629872988298929902991
int[] keys = IntIntHashMap.this.keys; while (!isNonSentinel(keys[this.position])) { this.position++; } IntIntPair result = PrimitiveTuples.pair(keys[this.position], IntIntHashMap.this.values[this.position]); this.position++; return result; }