300230033004300530063007300830093010
double[] keys = DoubleIntHashMap.this.keys; while (!isNonSentinel(keys[this.position])) { this.position++; } DoubleIntPair result = PrimitiveTuples.pair(keys[this.position], DoubleIntHashMap.this.values[this.position]); this.position++; return result; }
54555657585960616263
if (!(o instanceof DoubleIntPair)) { return false; } DoubleIntPair that = (DoubleIntPair) o; return (Double.compare(this.one, that.getOne()) == 0) && (this.two == that.getTwo()); }