Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

This is the documentation for a snapshot of the master branch, built from commit 69109f5924.
PrevUpHomeNext
test::connect (2 of 2 overloads)

Return a new stream connected to the given stream.

Synopsis

Defined in header <boost/beast/_experimental/test/stream.hpp>

template<
    class... Args>
basic_stream
connect(
    basic_stream& to,
    Args&&... args);
Parameters

Name

Description

to

The stream to connect to.

args

Optional arguments forwarded to the new stream's constructor.

Return Value

The new, connected stream.


PrevUpHomeNext