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
The use case if for xoptional_sequence: we want to use an uncompressed storage for booleans, so xdynamic_bitset is not suitable. We cannot use vector<bool> because this specialization actually has a compressed storage. So the best option appears to be std::vector<uint_8>, however the boolean value_type must be a boolean and we want to avoid warnings about cast.
The text was updated successfully, but these errors were encountered:
The use case if for xoptional_sequence: we want to use an uncompressed storage for booleans, so
xdynamic_bitset
is not suitable. We cannot usevector<bool>
because this specialization actually has a compressed storage. So the best option appears to bestd::vector<uint_8>
, however the boolean value_type must be a boolean and we want to avoid warnings about cast.The text was updated successfully, but these errors were encountered: