| 47 | static constexpr auto npos = std::string_view::npos; // required |
| 48 | |
| 49 | MyString() : str{} {} // required |
| 50 | MyString(const char* s, std::size_t l) : str{s, l} {} // required |
| 51 | bool empty() const { return str.empty(); } // required |
| 52 | auto begin() const { return str.begin(); } // required |
nothing calls this directly
no outgoing calls
no test coverage detected