You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For my use case I want to test if there is anything set in a given range.
I know I could use rank of upper bound and subtract rank of lower bound
or create a bit set of the range and then call intersection_len
however both these options presumably will be slower than an optimized single call.
I see the java library has methods to get these results.
Would it be possible to implement these methods?
The text was updated successfully, but these errors were encountered:
Thanks for the all the work put in.
For my use case I want to test if there is anything set in a given range.
I know I could use rank of upper bound and subtract rank of lower bound
or create a bit set of the range and then call intersection_len
however both these options presumably will be slower than an optimized single call.
I see the java library has methods to get these results.
Would it be possible to implement these methods?
The text was updated successfully, but these errors were encountered: