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