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