Introduction
Let's take a look at what we'll cover in this section.
We'll cover the following...
Since C++11 and move semantics, passing strings has become much faster. You can end up with many temporary string copies. In C++17 you get a new type called string_view
. It allows ...