| 212 | } |
| 213 | |
| 214 | std::string StringUtils::join(const std::vector<std::string>& input, const std::string& separator) { |
| 215 | return StringUtils::join(input, input.size(), separator, |
| 216 | [](const std::string& s) { return s; }); |
| 217 | } |
| 218 | |
| 219 | std::string StringUtils::join(const std::span<const std::string_view> input, |
| 220 | const std::string& separator) { |