MySQL 8.0.40
Source Code Documentation
|
Namespaces | |
namespace | internal |
Functions | |
template<class... Args> | |
std::string | concat (Args... args) |
Convert all the arguments to strings and concatenate the strings. More... | |
std::string mysqlns::string::concat | ( | Args... | args | ) |
Convert all the arguments to strings and concatenate the strings.
This feeds all arguments to a std::ostringstream
, so supports all types for which operator<<(std::ostringstream&, ...)
is defined.
args | Arguments to concatenate. |