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