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