Front Page / Algorithms / Transformation Algorithms / transform |
template< typename Sequence , typename Op , typename In = unspecified > struct transform { typedef unspecified type; }; template< typename Seq1 , typename Seq2 , typename BinaryOp , typename In = unspecified > struct transform { typedef unspecified type; };
transform is an overloaded name:
[Note: This wording applies to a no-inserter version(s) of the algorithm. See the Expression semantics subsection for a precise specification of the algorithm's details in all cases — end note]
#include <boost/mpl/transform.hpp>
Parameter | Requirement | Description |
---|---|---|
Sequence, Seq1, Seq2 | Forward Sequence | Sequences to transform. |
Op, BinaryOp | Lambda Expression | A transformation. |
In | Inserter | An inserter. |
The semantics of an expression are defined only where they differ from, or are not defined in Reversible Algorithm.
For any Forward Sequences s, s1 and s2, Lambda Expressions op and op2, and an Inserter in:
typedef transform<s,op,in>::type r;
Return type: | A type. |
---|---|
Postcondition: | Equivalent to typedef lambda<op>::type f; typedef lambda<in::operation>::type in_op; typedef fold< s , in::state , bind< in_op, _1, bind<f, _2> > >::type r; |
typedef transform<s1,s2,op,in>::type r;
Return type: | A type. |
---|---|
Postcondition: | Equivalent to typedef lambda<op2>::type f; typedef lambda<in::operation>::type in_op; typedef fold< pair_view<s1,s2> , in::state , bind< in_op , _1 , bind<f, bind<first<>,_2>, bind<second<>,_2> > > >::type r; |
Linear. Exactly size<s>::value / size<s1>::value applications of op / op2 and in::operation.