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

#include <type_traits.hpp>

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

Detailed Description

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

Determine if T meets the requirements of File.

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 File>
void f(File& file)
{
static_assert(is_file<File>::value,
"File requirements not met");
...

Use with std::enable_if (SFINAE):

template<class File>
typename std::enable_if<is_file<File>::value>::type
f(File& file);

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