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