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