From 15a5471bef0222b4c6179971df4a5b172f0f3742 Mon Sep 17 00:00:00 2001 From: AndrewYongZhenNing Date: Fri, 14 Jan 2022 16:03:52 +0000 Subject: [PATCH] strTo<> now converts string of numbers to vector --- lib/Core/Utilities.hpp | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/lib/Core/Utilities.hpp b/lib/Core/Utilities.hpp index 0ca5e4a..448fb46 100644 --- a/lib/Core/Utilities.hpp +++ b/lib/Core/Utilities.hpp @@ -108,6 +108,23 @@ inline std::string strFrom(const T x) } // specialization for vectors +template<> +inline std::vector strTo>(const std::string &str) +{ + std::vector res; + std::vector vbuf; + double buf; + std::istringstream stream(str); + + while (!stream.eof()) + { + stream >> buf; + vbuf.push_back(buf); + } + + return res; +} + template<> inline DVec strTo(const std::string &str) {