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