ゴミ箱
boost::beast::is_sync_read_stream< T, class > Struct Template Reference

#include <type_traits.hpp>

Inheritance diagram for boost::beast::is_sync_read_stream< T, class >:

Detailed Description

template<class T, class = void>
struct boost::beast::is_sync_read_stream< T, class >

Determine if T meets the requirements of SyncReadStream.

Metafunctions are used to perform compile time checking of template types. This type will be std::true_type if T meets the requirements, else the type will be std::false_type.

Example

Use with static_assert:

template<class SyncReadStream>
void f(SyncReadStream& stream)
{
static_assert(is_sync_read_stream<SyncReadStream>::value,
"SyncReadStream requirements not met");
...

Use with std::enable_if (SFINAE):

template<class SyncReadStream>
typename std::enable_if<is_sync_read_stream<SyncReadStream>::value>::type
f(SyncReadStream& stream);

The documentation for this struct was generated from the following file: