| 300 | class static_str { |
| 301 | public: |
| 302 | constexpr explicit static_str(str_view str) noexcept : static_str{str.str_, std::make_integer_sequence<std::uint16_t, N>{}} { |
| 303 | MAGIC_ENUM_ASSERT(str.size_ == N); |
| 304 | } |
| 305 | |
| 306 | constexpr explicit static_str(const char* const str) noexcept : static_str{ str, std::make_integer_sequence<std::uint16_t, N>{} } { |
| 307 | } |