PrevUpHomeNext

Function template from

boost::pipeline::from

Synopsis

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


template<typename Container> unspecified from(const Container & container);

Description

Creates a segment operating on container.

Join other transformations (segments) using the pipe operator to create a pipeline.

Parameters:

container

Container of items which form the input of the pipeline

Returns:

segment<terminated, T>, T is the value_type of Container


PrevUpHomeNext