PrevUpHomeNext

Function template make

boost::pipeline::make

Synopsis

// In header: <boost/pipeline/pipeline.hpp>


template<typename Function, 
         typename std::enable_if< !std::is_function< Function >::value, int >::type = 0> 
  unspecified make(const Function & function);

Description

Creates an open, non-terminated segment representing function.

Parameters:

function

Arbitrary transformation, but not a function pointer

Returns:

segment<unknown, T>


PrevUpHomeNext