Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

This is the documentation for an old version of boost. Click here for the latest Boost documentation.
PrevUpHomeNext

Function template transform_iterator_range

boost::algorithm::transform_iterator_range — transform a range into a sequence

Synopsis

template<typename SeqT, typename IteratorT, typename FuncT> 
  SeqT transform_iterator_range(const iterator_range< IteratorT > & Range, 
                                FuncT Func);

Description

Create a new sequence from the elements in the range, transformed by a function

Parameters

Func

Transformation function

Range

An input range

Returns: New sequence

Copyright © 2002-2004 Pavol Droba

PrevUpHomeNext