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