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