Mario Rugiero
Mario Rugiero
Soooo, this actually can be done by me in a PR. I didn't know that.
Should I try and set it up? Maybe there's a way to give access to it to the `RoaringBitmap` org. I'm thinking of registering a non-blocking (in case we hit...
I made a simple test, no automation yet. I'm fixing a few issues, I'll resume work during the weekend and try to get to a draft PR for automation (plus...
Indeed, that was my reasoning. I didn't think through the intersection part being tinier. I guess worst case is a set of dense intersections where the resulting bitmap may still...
What happens if I modify a roaring bitmap that's used as a key for a map? It that UB? Should we document to always make them COW or some kind...
My question comes from having aliasing. Let's say we use a `RoaringBitmap` instance (I think that's the name in C++?) as key. Will `RoaringBitmap` be deep-copied? In that case, should...
> Hi I have a question about `ra_advance_until(const roaring_array_t *ra, uint16_t x, int32_t pos)`, > it seems this will jump over the container position `pos`, which means if you want...
Looks mostly OK. We still need tests and documentation, and benchmarks would be desirable too. @lemire what did you mean by header version BTW?
> But for me, adding a sort inside a lib API is not a good idea rather than prompting users to pass the sorted data instead if they want better...
Should we assume we have C11 to implement a C version or require C++ for this?