30#ifndef HORIZON_COMMON_UTILITIES_STRUTILS_HPP
31#define HORIZON_COMMON_UTILITIES_STRUTILS_HPP
38 static std::vector<std::string>
explode(std::string
const &s,
char delim)
40 std::vector<std::string> result;
41 std::istringstream iss(s);
43 for (std::string token; std::getline(iss, token, delim); )
44 result.push_back(std::move(token));
Definition: StrUtils.hpp:36
static std::vector< std::string > explode(std::string const &s, char delim)
Definition: StrUtils.hpp:38