...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
Determine if a list of types satisfy the MutableBufferSequence requirements.
Defined in header <boost/beast/core/buffer_traits.hpp>
template< class... BufferSequence> using is_mutable_buffer_sequence = see-below;
This metafunction is used to determine if all of the specified types meet
the requirements for mutable buffer sequences. This type alias will be std::true_type
if each specified type meets the requirements, otherwise, this type alias
will be std::false_type
.
Type |
Description |
---|---|
|
A list of zero or more types to check. If this list is empty, the
resulting type alias will be |