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