PrevUpHomeNext

Function template from

boost::pipeline::from

Synopsis

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


template<typename T> unspecified from(queue< T > & queue);

Description

Creates a segment operating on items of the given queue.

Elements to process might be added to the queue later until the queue is closed by the application.

Parameters:

queue

Queue containing the input of the pipeline

Returns:

segment<terminated, T>, T is value_type of queue


PrevUpHomeNext