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