cppreference uses it to describe std::string_view:
std::basic_string_view(C++17) - a lightweight non-owning read-only view into a subsequence of a string.
devtut and sodocumentation use it to describe std::string_view as well:
C++17 introduces
std::string_view, which is simply a non-owning range ofconst chars, implementable as either a pair of pointers or a pointer and a length.
And various other questions and answers here on SO reference it, yet I can't find any explanation of what it means.
 
     
    