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 an older version of Boost and was released in 2024. The current version is 1.89.0.
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...