libwolfram20

◆ VectorToStr() [1/2]

template<typename T >
std::string WAQuery::VectorToStr ( const char *  prefix,
bool  individual,
std::vector< T > &  t 
)
private

Concatenating a vector data to string.

Parameters
prefixString prefix for data; example '&name='
individualType of concatenating string
tVector of data
Returns
String with concatenated string
204 {
205 return this->VectorToStr(std::string(prefix), individual, t);
206}
std::string VectorToStr(const char *prefix, bool individual, std::vector< T > &t)
Concatenating a vector data to string.
Definition: WAQuery.cpp:204