| 268 | [[nodiscard]] string str() const { return {begin(), end()}; } |
| 269 | |
| 270 | [[nodiscard]] constexpr operator string_view() const noexcept { return {data(), size()}; } |
| 271 | |
| 272 | [[nodiscard]] constexpr explicit operator const_pointer() const noexcept { return data(); } |
| 273 |
nothing calls this directly
no outgoing calls
no test coverage detected