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