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 an old version of Boost. Click here to view this page for the latest version.
PrevUpHomeNext
test::basic_stream::basic_stream

Move Constructor.

basic_stream(
    basic_stream&& other);
  » more...

template<
    class Executor2>
basic_stream(
    basic_stream< Executor2 >&& other);
  » more...

Construct a stream.

template<
    typename ExecutionContext>
explicit
basic_stream(
    ExecutionContext& context,
    typename std::enable_if< std::is_convertible< ExecutionContext &, net::execution_context & >::value >::type* = 0);
  » more...

explicit
basic_stream(
    executor_type exec);
  » more...

basic_stream(
    net::io_context& ioc,
    fail_count& fc);
  » more...

basic_stream(
    net::io_context& ioc,
    string_view s);
  » more...

basic_stream(
    net::io_context& ioc,
    fail_count& fc,
    string_view s);
  » more...

PrevUpHomeNext