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