Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Struct template proxy_arrow_result

boost::stl_interfaces::proxy_arrow_result

Synopsis

// In header: <boost/stl_interfaces/iterator_interface.hpp>

template<typename T> 
struct proxy_arrow_result {
  // construct/copy/destruct
  () ;
  () ;

  // public member functions
   () ;
   () ;
};

Description

The return type of operator->() in a proxy iterator.

This template is used as the default Pointer template parameter in the proxy_iterator_interface template alias. Note that the use of this template implies a copy or move of the underlying object of type T.

proxy_arrow_result public construct/copy/destruct

  1. ( value) ;
  2. ( value) ;

proxy_arrow_result public member functions

  1.  () ;
  2.  () ;

PrevUpHomeNext