26 #ifndef CLOE_UTILITY_STD_EXTENSIONS_HPP_ 27 #define CLOE_UTILITY_STD_EXTENSIONS_HPP_ 36 std::string join_vector(
const std::vector<std::string>& v,
const std::string& sep);
38 std::vector<std::string> split_string(std::string&& s,
const std::string& sep);
41 std::vector<std::string> map_keys(
const std::map<std::string, T>& m) {
42 std::vector<std::string> result;
43 result.reserve(m.size());
44 for (
const auto& kv : m) {
45 result.emplace_back(kv.first);
Definition: coordinator.hpp:36