1
0
mirror of https://github.com/aportelli/LatAnalyze.git synced 2025-04-05 09:35:54 +01:00

strTo<> now converts string of numbers to vector<Index>

This commit is contained in:
AndrewYongZhenNing 2022-01-14 16:03:52 +00:00
parent 28aff209c4
commit 15a5471bef

View File

@ -108,6 +108,23 @@ inline std::string strFrom(const T x)
}
// specialization for vectors
template<>
inline std::vector<Index> strTo<std::vector<Index>>(const std::string &str)
{
std::vector<Index> res;
std::vector<double> vbuf;
double buf;
std::istringstream stream(str);
while (!stream.eof())
{
stream >> buf;
vbuf.push_back(buf);
}
return res;
}
template<>
inline DVec strTo<DVec>(const std::string &str)
{