| 110 | |
| 111 | template <typename T> |
| 112 | inline TString JoinVectorIntoString(const TVector<T>& v, const TStringBuf delim) { |
| 113 | return JoinStrings(v.begin(), v.end(), delim); |
| 114 | } |
| 115 | |
| 116 | template <typename T> |
| 117 | inline TString JoinVectorIntoString(const TVector<T>& v, size_t index, size_t count, const TStringBuf delim) { |
no test coverage detected