dynamic_bitset icon indicating copy to clipboard operation
dynamic_bitset copied to clipboard

Boost.org dynamic_bitset module

Results 16 dynamic_bitset issues
Sort by recently updated
recently updated
newest added

Hello, Consider the following code: ```cpp #include #include int main() { auto bitset = boost::dynamic_bitset(10, true); std::cout

I want to use dynamic_bitset with boost::container::small_vector, but currently it is not possible because buffer type is not changeable. Other adapter containers like boost::container::flat_set allows to pass an "allocator or...

I found that the latest develop branch(commit id: 8e20aa1) will generate compile failures because of std::hash related error when using below CI options on Appveyor: - Environment: FLAVOR=Visual Studio 2017...

I would like to support iterator feature to make it safer when traversing a dynamic_bitset and make the corresponding snippets acting like STL. I think it's necessary for dynamic_bitset to...

The current implementation for the `is_proper_subset_of` can be slightly improved by breaking out of the loop after `proper` has been set to `true`. From that point forward, the remaining words...

Hello boost devs/maintainers, I find the current `push_back` logic a bit strange with the two-steps - call `resize()` method but using the default value = false - then call `set()`...

Create boolean (or, and, xor and sub) and equality operators, that operate on two distinct bitsets with different starting points, but same length, in place.

`num_bits + bits_per_block - 1` is unlikely to overflow. After the change, it could be a little faster.

https://github.com/boostorg/dynamic_bitset/pull/64 PENDING COMMIT: https://github.com/boostorg/dynamic_bitset/pull/67 - documenting a deprecation in 1.80 that will require a macro in 1.81 and will be incompatible in 1.83.

Details: https://github.com/boostorg/dynamic_bitset/pull/67 There are a few methods that do not need to be public, perhaps, so according to @glenfe : - In Boost 1.80.0, announce in documentation and in release...