More Rules about the Regular Expression Library
/
0 Comments
There is more to write about the usage of regular expressions than I wrote in my last post The Regular…
The Regular Expression Library
My original plan was to write about the rules of the C++ Core Guidelines for the regex and chrono library,…
C++ Core Guidelines: Improved Performance with Iostreams
As easy as my title and the rules of the C++ core guidelines sound, getting more performance out of the…
Stuff you should know about In- and Output with Streams
Today's post is about what you should know about Iostreams. In particular, I write about formatted and…
C++ Core Guidelines: IOstreams
When you interact with the outside world, the iostream library is the way to go in C++. As always, you…
C++ Core Guidelines: Rules for Strings
The C++ core guidelines use the term string as a sequence of characters. Consequently, the guidelines…
C++ Core Guidelines: Avoid Bounds Errors
When you access an element outside a container of the STL, the result is not so promising. Your effect…
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.…
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.…
C++ Core Guidelines: The Standard Library
The rules to the C++ standard library are mainly about containers, strings, and iostreams.
Curiously,…