| 545 | : data_(s.data()), size_(s.size()) {} |
| 546 | |
| 547 | constexpr auto data() const noexcept -> const Char* { return data_; } |
| 548 | constexpr auto size() const noexcept -> size_t { return size_; } |
| 549 | |
| 550 | constexpr auto begin() const noexcept -> iterator { return data_; } |
nothing calls this directly
no outgoing calls
no test coverage detected