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