Std :: list <bool> implementation
1 answer
As you can see from the standard, it std::vector<bool>has its own paragraph, which dictates its implementation. The requirement for std::list, having one, does not exist, this does not mean that the implementation does not have the right to have it. And as far as I know, std::vectoris the only container that should have specialization for bool.
+5