Wrap Up

Let's summarise this chapter.

We'll cover the following...

Here are the things to remember about std::string_view:

  • It’s a specialisation of std::basic_string_view<charType, traits<charType>> - with charType equal to char.
  • It’s a non-owning view of a
...