Boost
C++ Libraries
...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
This is an older version of Boost and was released in 2020. The current version is 1.89.0.
The boost::asio::buffer_sequence_end
function returns an iterator pointing to one past the end element in a buffer
sequence.
Get an iterator to one past the end element in a buffer sequence.
template<
typename MutableBuffer>
const mutable_buffer * buffer_sequence_end(
const MutableBuffer & b,
typename enable_if< is_convertible< const MutableBuffer *, const mutable_buffer * >::value >::type * = 0);
» more...
template<
typename ConstBuffer>
const const_buffer * buffer_sequence_end(
const ConstBuffer & b,
typename enable_if< is_convertible< const ConstBuffer *, const const_buffer * >::value >::type * = 0);
» more...
template<
typename C>
auto buffer_sequence_end(
C & c,
typename enable_if< !is_convertible< const C *, const mutable_buffer * >::value &&!is_convertible< const C *, const const_buffer * >::value >::type * = 0);
» more...
template<
typename C>
auto buffer_sequence_end(
const C & c,
typename enable_if< !is_convertible< const C *, const mutable_buffer * >::value &&!is_convertible< const C *, const const_buffer * >::value >::type * = 0);
» more...
Header: boost/asio/buffer.hpp
Convenience header: boost/asio.hpp