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