| 68 | |
| 69 | std::string toString() const { return std::string(data, size); } |
| 70 | constexpr std::string_view toView() const { return std::string_view{data, size}; } |
| 71 | |
| 72 | explicit operator std::string() const { return toString(); } |
| 73 | constexpr explicit operator std::string_view() const { return std::string_view{data, size}; } |
no outgoing calls
no test coverage detected