2024-01-01 14:01:31 +01:00
|
|
|
#include <vector>
|
|
|
|
|
#include <string>
|
|
|
|
|
#include <set>
|
|
|
|
|
#include <sstream>
|
|
|
|
|
|
|
|
|
|
const char* vectorToString(const std::vector<std::string>& vec, const std::string separator);
|
|
|
|
|
const char* vectorToString(const std::vector<uint32_t>& vec, const std::string separator);
|
2024-01-02 00:26:21 +01:00
|
|
|
const char* vectorToString(const std::vector<uint64_t>& vec, const std::string separator);
|
|
|
|
|
const char* vectorToString(const std::vector<std::set<uint32_t>>& vec, const std::string separator);
|
2024-01-04 22:17:42 +01:00
|
|
|
const char* vectorToString(const std::set<uint32_t>& intSet, const std::string separator);
|
2024-04-17 15:55:34 +02:00
|
|
|
std::set<std::string> splitString(const std::string& str, const std::string& delim);
|
|
|
|
|
std::vector<uint64_t> splitStringUint(const std::string& str, const std::string& delim);
|