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 an old version of boost. Click here for the latest Boost documentation.
PrevUpHomeNext

Struct template result<This(BidirectionalIterator, Distance)>

boost::proto::functional::prior::result<This(BidirectionalIterator, Distance)>

Synopsis

// In header: <boost/proto/functional/std/iterator.hpp>


template<typename This, typename BidirectionalIterator, typename Distance> 
struct result<This(BidirectionalIterator, Distance)> {
  // types
  typedef typename boost::remove_const<
      typename boost::remove_reference<BidirectionalIterator>::type
    >::type type;
};

PrevUpHomeNext