| 97 | |
| 98 | template <typename TFirst, typename... TRest> |
| 99 | inline TString Join(const TStringBuf delim, const TFirst& f, const TRest&... r) { |
| 100 | TString ret = ToString(f); |
| 101 | AppendJoin(ret, delim, r...); |
| 102 | return ret; |
| 103 | } |
| 104 | |
| 105 | // Note that char delimeter @cdelim will be printed as single char string, |
| 106 | // but any char value @v will be printed as corresponding numeric code. |
no test coverage detected