Benoit Chatain Lacelle

Results 129 comments of Benoit Chatain Lacelle

> Which was it? The command with `-pl` was reproducing the same false-positive as the command without `-pl` (but it was faster to reproducing them). In other words, I could...

It can be workarounded by first removing modifiers. But then, adding back the modifiers leads to unexpected indentation (I may provide a reproductionCase, but it seems acceptable to me). clazz.setModifiers();...

Hello, We encounter a similar issue with: ``` import jakarta.validation.Valid; public interface Issue807 { public @Valid List getAccount(); } ``` which, after modifier edition gives: ``` import jakarta.validation.Valid; public interface...

May relate with https://github.com/javaparser/javaparser/issues/3940

Relates with https://github.com/RoaringBitmap/RoaringBitmap/pull/461 I may require the same API change, hence package change.

At somer point, I feel ImmutableRoarding64NavigableBitmap shall be a parent class for Roarding64NavigableBitmap. Also, beware ImmutableRoaring64Bitmap suggests being mostly related to Roaring64Bitmap, while I suppose your meant Roarding64NavigableBitmap

@shouriken Are you looking for better `.rank` performance (in which case `FastRankRoaringBitmap ` can indeed be helpful). Or do you look for something like `java.util.Arrays.binarySearch(long[], long)` which would return the...

I'm quite convinced nobody is working on this yet. > This might be a time where we can start documenting the on disk format so that it is the same...

Regarding > I would like to use Roaring64NavigableBitmap as an read-only data-structure that may be backed by memory mapped implementations. Can this be achieved with `org.roaringbitmap.longlong.Roaring64NavigableMap#Roaring64NavigableMap(org.roaringbitmap.BitmapDataProviderSupplier)` ?

> You can't know the offset without knowing the cumulative cardinality, so a binary search approach couldn't work without either computing or looking up the cumulative cardinality. This is essentially...