|  | Home | Libraries | People | FAQ | More | 
         
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 constraint< is_convertible< const MutableBuffer *, const mutable_buffer * >::value >::type  = 0);
  » more...
template<
    typename ConstBuffer>
const const_buffer * buffer_sequence_end(
    const ConstBuffer & b,
    typename constraint< is_convertible< const ConstBuffer *, const const_buffer * >::value >::type  = 0);
  » more...
template<
    typename C>
auto buffer_sequence_end(
    C & c,
    typename constraint< !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 constraint< !is_convertible< const C *, const mutable_buffer * >::value &&!is_convertible< const C *, const const_buffer * >::value >::type  = 0);
  » more...
Get an iterator to one past the end element in a buffer sequence.
const mutable_buffer * buffer_sequence_end( const mutable_registered_buffer & b); » more... const const_buffer * buffer_sequence_end( const const_registered_buffer & b); » more...
        Header: boost/asio/buffer.hpp
      
        Convenience header: boost/asio.hpp