# cpp-string_view **Repository Path**: shaoguangcn/cpp-string_view ## Basic Information - **Project Name**: cpp-string_view - **Description**: An implementation of std::basic_string_view for pre-C++17 - **Primary Language**: C++ - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-06-04 - **Last Updated**: 2023-11-08 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # basic_string_view ```cpp template> class basic_string_view; ``` An implementation of ``std::basic_string_view`` for pre-C++17 The template class ``basic_string_view`` describes an object that can refer to a constant contiguous sequence of ``char``-like objects with the first element of the sequence at position zero. 类模板 ``basic_string_view`` 描述一个能指代常量连续仿 ``char`` 对象序列的对象,序列首元素在零位置。