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