9 #ifndef ASIOEXT_ISRAWBYTECONTAINER_HPP 10 #define ASIOEXT_ISRAWBYTECONTAINER_HPP 12 #include "asioext/detail/config.hpp" 14 #if ASIOEXT_HAS_PRAGMA_ONCE 20 #include <type_traits> 51 #if defined(ASIOEXT_IS_DOCUMENTATION) 71 template <
class Traits,
class Allocator>
72 struct is_raw_byte_container<
std::basic_string<char, Traits, Allocator> >
76 template <
class Traits,
class Allocator>
77 struct is_raw_byte_container<
std::basic_string<unsigned char, Traits, Allocator> >
81 template <
class Traits,
class Allocator>
82 struct is_raw_byte_container<
std::basic_string<signed char, Traits, Allocator> >
86 template <
class Allocator>
87 struct is_raw_byte_container<
std::vector<char, Allocator> >
91 template <
class Allocator>
92 struct is_raw_byte_container<
std::vector<unsigned char, Allocator> >
96 template <
class Allocator>
97 struct is_raw_byte_container<
std::vector<signed char, Allocator> >
Determines whether T satisfies the RawByteContainer requirements.
Definition: is_raw_byte_container.hpp:60
static const bool value
Definition: is_raw_byte_container.hpp:64