| 66 | } |
| 67 | |
| 68 | void VectorToString(const vector<string> &inVector, string &outString, const string_view &inDelimiter) |
| 69 | { |
| 70 | // Ensure string empty |
| 71 | outString.clear(); |
| 72 | |
| 73 | for (const string &s : inVector) |
| 74 | { |
| 75 | // Add delimiter if not first element |
| 76 | if (!outString.empty()) |
| 77 | outString.append(inDelimiter); |
| 78 | |
| 79 | // Add element |
| 80 | outString.append(s); |
| 81 | } |
| 82 | } |
| 83 | |
| 84 | string ToLower(const string_view &inString) |
| 85 | { |
no test coverage detected