![]() |
Home | Libraries | People | FAQ | More |
boost::cast_pipe
// 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) ; };
Model of OneManyPipe
that casts its input to its template parameter and writes it to its output.