| 355 | |
| 356 | template <class CONTAINER> |
| 357 | inline void JoinElements(const CONTAINER& components, |
| 358 | StringPiece delim, |
| 359 | string* result) { |
| 360 | JoinElementsIterator(components.begin(), components.end(), delim, result); |
| 361 | } |
| 362 | |
| 363 | template <class CONTAINER> |
| 364 | inline string JoinElements(const CONTAINER& components, StringPiece delim) { |