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