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