Asio Extensions
Additional functionality built on top of (Boost.)Asio
asioext::is_raw_byte_container< T > Struct Template Reference

Determines whether T satisfies the RawByteContainer requirements. More...

#include <asioext/is_raw_byte_container.hpp>

Static Public Attributes

static const bool value
 

Detailed Description

template<class T>
struct asioext::is_raw_byte_container< T >

Determines whether T satisfies the RawByteContainer requirements.

Note
Currently there is no automatic way of determining conformance, so by default value is false. There are partial specializations for std::vector and std::basic_string that define value as true if the contained type is one of char, unsigned char, signed char.

Member Data Documentation

◆ value

template<class T >
const bool asioext::is_raw_byte_container< T >::value
static

true if T satisfies the RawByteContainer requirements, false otherwise.