book 159880 1280

More special Friends with std::map and std::unordered_map

/
Modern C++ has eight associative containers, but your special friends should be std::map and std::unordered_map.…
rules 1752626 1280

C++ Core Guidelines: std::array and std::vector are your Friends

/
In 99 % of your use cases for a sequential container, you are outstanding with a std::array or a std::vector.…
iso 154533 1280

C++ Core Guidelines: The Standard Library

/
The rules to the C++ standard library are mainly about containers, strings, and iostreams. Curiously,…
boxes 2624231 1280

More Details to Modules

/
 My last post gave you an introduction to modules in C++20. This post shows how to use existing…