-
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
include update() method to take an array of values #13
Comments
I got around this by just using |
Good point, I also think that we should match the set interface. CRoaring does not have yet an update function, so we are currently forced to use the I have created an issue in CRoaring: RoaringBitmap/CRoaring#54 |
Version 0.2.3 has a function with the following signature...
which could be handy. |
with ctypes, adding a single element at a time (when it's not feasible to send an array to the constructor) is slow. Would be nice to have an update() method that would have only a single ctypes call.
The text was updated successfully, but these errors were encountered: