Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Transformation

Functions
Metafunctions

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>
#include <boost/fusion/include/transformation.hpp>

PrevUpHomeNext