...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
Initializing constructor.
template<
class... Args,
class EnableIf = typename std::enable_if<std::is_constructible<Stream, Args...>::value>::type>
connection(
Args&&... args);
» more...
Initializing constructor with buffer params.
template<
class... Args,
class EnableIf = typename std::enable_if<std::is_constructible<Stream, Args...>::value>::type>
connection(
const buffer_params& buff_params,
Args&&... args);
» more...
Move constructor.
connection(
connection&& other);
» more...