Articles C++
What happens with std::vector<bool>?
If you know a bit of modern C++ you will have use the std::vector<T> container a lot of times without even wondering what type you specify to instantiate the container. This is fine for every case except for on specific one, std::vector<bool>. If you go to the std::vector specification you Read more…