| 68 | } |
| 69 | |
| 70 | constexpr bool operator==(const string& s) const noexcept |
| 71 | { |
| 72 | return std::equal(_data, _data + _length, s._data); |
| 73 | } |
| 74 | |
| 75 | constexpr char* data() { return _data; } |
| 76 | constexpr char* data() const { return _data; } |
nothing calls this directly
no outgoing calls
no test coverage detected