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