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