Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Struct template cast_pipe

boost::cast_pipe

Synopsis

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

template<typename T> 
struct cast_pipe : public boost::one_many_pipe< cast_pipe< T > > {
  // types
  typedef T              input_type; 
  typedef T              output_type;
  typedef mpl::int_< 1 > max_output; 

  // public member functions
  template<typename U, typename Out> Out operator()(U, Out) ;
};

Description

Model of OneManyPipe that casts its input to its template parameter and writes it to its output.

cast_pipe public member functions

  1. template<typename U, typename Out> Out operator()(U in, Out out) ;

PrevUpHomeNext