construct from c string (with size info)
| 42 | |
| 43 | //! construct from c string (with size info) |
| 44 | constexpr const_string(const char (&str)[count]) noexcept : |
| 45 | content(make_array(str)) {} |
| 46 | |
| 47 | //! construct from storage container |
| 48 | template <size_t size> |
nothing calls this directly
no outgoing calls
no test coverage detected