MySQL 8.4.2
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 mysql::binlog::event::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. |