#include <boost/beast/config.hpp>
#include <boost/beast/core/file_base.hpp>
#include <boost/beast/core/detail/type_traits.hpp>
#include <boost/asio/buffer.hpp>
#include <type_traits>
Go to the source code of this file.
|
template<class T , class Signature > |
using | boost::beast::is_completion_handler = std::integral_constant< bool, std::is_copy_constructible< typename std::decay< T >::type >::value &&detail::is_invocable< T, Signature >::value > |
|
template<class T > |
using | boost::beast::is_async_stream = std::integral_constant< bool, is_async_read_stream< T >::value &&is_async_write_stream< T >::value > |
|
template<class T > |
using | boost::beast::is_sync_stream = std::integral_constant< bool, is_sync_read_stream< T >::value &&is_sync_write_stream< T >::value > |
|