| 285 | // DEPRECATED(jyrki): use JoinKeysAndValuesIterator directly. |
| 286 | template<typename T> |
| 287 | void JoinHashMapKeysAndValues(const T& container, |
| 288 | const StringPiece& intra_delim, |
| 289 | const StringPiece& inter_delim, |
| 290 | string* result) { |
| 291 | JoinKeysAndValuesIterator(container.begin(), container.end(), |
| 292 | intra_delim, inter_delim, |
| 293 | result); |
| 294 | } |
| 295 | |
| 296 | // ---------------------------------------------------------------------- |
| 297 | // JoinCSVLineWithDelimiter() |
nothing calls this directly
no test coverage detected