MySQL 8.4.0
Source Code Documentation
mysql::binlog::event::string Namespace Reference

Namespaces

namespace  internal
 

Functions

template<class... Args>
std::string concat (Args... args)
 Convert all the arguments to strings and concatenate the strings. More...
 

Function Documentation

◆ concat()

template<class... Args>
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.

Parameters
argsArguments to concatenate.
Returns
The resulting std::string.