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