Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Struct template one_many_pipe

boost::one_many_pipe

Synopsis

// In header: <boost/iterator/pipe_iterator.hpp>

template<typename OneManyPipe> 
struct one_many_pipe {

  // public member functions
  template<typename In, typename Out> std::pair< In, Out > ltr(In, In, Out) ;
  template<typename In, typename Out> std::pair< In, Out > rtl(In, In, Out) ;
};

Description

CRTP Utility to define a OneManyPipe.

one_many_pipe public member functions

  1. template<typename In, typename Out> 
      std::pair< In, Out > ltr(In begin, In end, Out out) ;
  2. template<typename In, typename Out> 
      std::pair< In, Out > rtl(In begin, In end, Out out) ;

PrevUpHomeNext