Function template transform
boost::yap::transform
Synopsis
template<typename Expr, typename Transform, Transforms>
( expr, transform, transforms);
Description
Returns the result of transforming (all or part of) expr using whatever overloads of Transform::operator()
match expr.
![[Note]](../../../../doc/src/images/note.png) |
Note |
Transformations can do anything: they may have side effects; they may mutate values; they may mutate types; and they may do any combination of these. |