| 129 | // ---------------------------------------------------------------------- |
| 130 | |
| 131 | void JoinMapKeysAndValues(const map<string, string>& components, |
| 132 | const StringPiece& intra_delim, |
| 133 | const StringPiece& inter_delim, |
| 134 | string* result) { |
| 135 | JoinKeysAndValuesIterator(components.begin(), components.end(), |
| 136 | intra_delim, inter_delim, |
| 137 | result); |
| 138 | } |
| 139 | |
| 140 | void JoinVectorKeysAndValues(const vector< pair<string, string> >& components, |
| 141 | const StringPiece& intra_delim, |
nothing calls this directly
no test coverage detected