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