C++ Language/Std/Strings/AliasedStrings
The newer std::string_view
class is like std::string
, except that its copy-construction does aliasing instead of copying character data.
C++ Language |
The newer std::string_view
class is like std::string
, except that its copy-construction does aliasing instead of copying character data.