Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Transformation

Functions
filter
filter_if
transform
replace
replace_if
remove
remove_if
reverse
clear
erase
erase_key
insert
insert_range
join
zip
pop_back
pop_front
push_back
push_front
Metafunctions
filter
filter_if
transform
replace
replace_if
remove
remove_if
reverse
clear
erase
erase_key
insert
insert_range
join
zip
pop_back
pop_front
push_back
push_front

The transformation algorithms create new sequences out of existing sequences by performing some sort of transformation. In reality the new sequences are views onto the data in the original sequences.

[Note] Note

As the transformation algorithms return views onto their input arguments, it is important that the lifetime of the input arguments is greater than the period during which you wish to use the results.

Header

#include <boost/fusion/algorithm/transformation.hpp>
Copyright © 2001-2005 Joel de Guzman, Dan Marsden

PrevUpHomeNext