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