| 130 | const char arr[N+1]; |
| 131 | |
| 132 | template <typename S1, typename S2, int... S> constexpr |
| 133 | array_string(const S1 &s1, const S2 &s2, const sequence<S...> seq) |
| 134 | : arr{joined_index(s1, s2, S)...} |
| 135 | {} |
| 136 | |
| 137 | template <int... S> constexpr |
| 138 | array_string(const static_string<N> &src, const sequence<S...> seq) |
nothing calls this directly
no test coverage detected