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