| 138 | } |
| 139 | |
| 140 | void JoinVectorKeysAndValues(const vector< pair<string, string> >& components, |
| 141 | const StringPiece& intra_delim, |
| 142 | const StringPiece& inter_delim, |
| 143 | string* result) { |
| 144 | JoinKeysAndValuesIterator(components.begin(), components.end(), |
| 145 | intra_delim, inter_delim, |
| 146 | result); |
| 147 | } |
| 148 | |
| 149 | // ---------------------------------------------------------------------- |
| 150 | // JoinCSVLine() |
nothing calls this directly
no test coverage detected