| 66 | static constexpr auto npos = std::string_view::npos; // required |
| 67 | |
| 68 | constexpr MyStringView() : str{} {} // required |
| 69 | constexpr MyStringView(const char* cstr, std::size_t size) : str{cstr, size} {} // required |
| 70 | constexpr bool empty() const { return str.empty(); } // required |
| 71 | constexpr std::size_t size() const { return str.size(); } // required |
nothing calls this directly
no outgoing calls
no test coverage detected