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