-
Notifications
You must be signed in to change notification settings - Fork 30
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Roaring64Map support #58
Comments
BTW (unrelated): I added a
Perhaps that should be mentioned as an installation option in the README? |
Hello, and sorry for the delay. It would be nice to have bindings for The conda installation is pretty cool, thanks. Would you want to do a pull request for the README to phrase it yourself? |
Thanks for the response. I don't know if I need 64-bit support after all :-)
See #61 I've also opened conda-forge/pyroaring-feedstock#4 to add you as a maintainer to the conda-forge package. I'll merge it if you approve. |
Alright, I will keep this issue open anyway, in case someone else wants to try ;-) |
I tried to wrap the c++ interface of roaring64map, but struggle to get it build, because I can't set flag |
You should not need C++20 to build CRoaring. |
it output some compile error which could be fixed with that flag though, I don't have the exact error message at hand right now. |
An alternative implementation of the 64 bit bitmaps is available in CRoaring, see RoaringBitmap/CRoaring#534 |
RoaringBitmap/CRoaring#543 has been solved just now. As soon as we have serialization/deserialization, I will issue a new release. |
Fixed in the latest release 1.0.0 🎉 |
The CRoaring source code includes a C++ file named
roaring64map.hh
, which begins with the following comment:So... do you think it would be possible to add python bindings for
Roaring64Map
? Or is that not feasible (or not advisable) for some reason?The text was updated successfully, but these errors were encountered: