
3 Sep
2025
3 Sep
'25
8:36 p.m.
On 3 Sep 2025 23:17, Vinnie Falco wrote:
What do you call the bitset whose size can change yet the capacity of the bitset is fixed at compile time?
Following Boost.Container convention, that would be static_dynamic_bitset, but that sounds silly, so static_bitset.
Or is that not a use-case typically desired? (i.e. boost::static_string is that container for strings).
It would probably offer a some size advantage over small_bitset. Specifically, it wouldn't have to track capacity and pointer to storage.