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