/* * helper_functions.hpp * * Created on: Jan 16, 2020 * Author: Johannes Wendel, Jonas Zeunert */ #include #include namespace help { template std::string make_list_string(Container container) { std::stringstream ss; for(auto & elem : container) { ss << std::to_string(elem) << ", "; } ss << std::string(2, 0x08); return std::string("[") + ss.str() + "]"; } }