| 181 | // ---------------------------------------------------------------------- |
| 182 | template <class CONTAINER> |
| 183 | inline void JoinStrings(const CONTAINER& components, |
| 184 | const StringPiece& delim, |
| 185 | string* result) { |
| 186 | JoinStringsIterator(components.begin(), components.end(), delim, result); |
| 187 | } |
| 188 | |
| 189 | template <class CONTAINER> |
| 190 | inline string JoinStrings(const CONTAINER& components, |