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
Currently one can perform in-place or, andnot and xor operations with a range parameter through the addRange, removeRange and flip methods. Range-based and can be simulated by two consecutive calls to removeRange:
Currently one can perform in-place or, andnot and xor operations with a range parameter through the
addRange
,removeRange
andflip
methods. Range-based and can be simulated by two consecutive calls toremoveRange
:It would be more convenient to have a method family like, e.g.,
mask
andmaskClosed
implementing the same functionality directly.It would also be helpful to have a family of methods for performing range-restricted updates, i.e. something like
whose semantics would be
Specialized methods could probably be much faster and more memory-efficient than the mask-based solution above.
The text was updated successfully, but these errors were encountered: