PrevUpHomeNext

Function template from

boost::pipeline::from

Synopsis

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


template<typename Iterator> 
  unspecified from(const Iterator & begin, const Iterator & end);

Description

Creates a segment operating on a range.

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

Parameters:

begin

Beginning of the input range

end

End of the input range (exclusive)

Returns:

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


PrevUpHomeNext