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