required
| 77 | constexpr MyStringView substr(std::size_t p, std::size_t n) { return str.substr(p, n); } // required |
| 78 | constexpr void remove_prefix(std::size_t n) { str.remove_prefix(n); } // required |
| 79 | constexpr void remove_suffix(std::size_t n) { str.remove_suffix(n); } // required |
| 80 | friend constexpr bool operator==(MyStringView lhs, MyStringView rhs); // required |
| 81 | |
| 82 | constexpr MyStringView(const char* cstr) : str{ cstr } {} |
nothing calls this directly
no outgoing calls
no test coverage detected