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