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 the documentation for a snapshot of the develop branch, built from commit 84940c5a0e.
PrevUpHomeNext

buffer_sequence_end (3 of 7 overloads)

Get an iterator to one past the end element in a buffer sequence.

template<
    typename ConvertibleToBuffer>
const ConvertibleToBuffer * buffer_sequence_end(
    const ConvertibleToBuffer & b,
    constraint_t< !is_convertible< const ConvertibleToBuffer *, const mutable_buffer * >::value >  = 0,
    constraint_t< !is_convertible< const ConvertibleToBuffer *, const const_buffer * >::value >  = 0,
    constraint_t< is_convertible< ConvertibleToBuffer, mutable_buffer >::value||is_convertible< ConvertibleToBuffer, const_buffer >::value >  = 0);

PrevUpHomeNext