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