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