| 169 | |
| 170 | template <typename TCharType, typename TContainer> |
| 171 | inline TBasicString<TCharType> JoinSeq(std::basic_string_view<TCharType> delim, const TContainer& data) { |
| 172 | using std::begin; |
| 173 | using std::end; |
| 174 | return JoinRange(delim, begin(data), end(data)); |
| 175 | } |
| 176 | |
| 177 | template <typename TCharType, typename TContainer> |
| 178 | inline TBasicString<TCharType> JoinSeq(const TCharType* delim, const TContainer& data) { |
no test coverage detected