Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_33_1/libs/mpl/doc/refmanual/transform.html @ 12

Last change on this file since 12 was 12, checked in by landauf, 18 years ago

added boost

File size: 12.1 KB
Line 
1<?xml version="1.0" encoding="utf-8" ?>
2<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
4<head>
5<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
6<meta name="generator" content="Docutils 0.3.6: http://docutils.sourceforge.net/" />
7<title>The MPL Reference Manual: transform</title>
8<link rel="stylesheet" href="../style.css" type="text/css" />
9</head>
10<body class="docframe refmanual">
11<table class="header"><tr class="header"><td class="header-group navigation-bar"><span class="navigation-group"><a href="./copy-if.html" class="navigation-link">Prev</a>&nbsp;<a href="./replace.html" class="navigation-link">Next</a></span><span class="navigation-group-separator">&nbsp;|&nbsp;</span><span class="navigation-group"><a href="./copy-if.html" class="navigation-link">Back</a>&nbsp;<a href="./replace.html" class="navigation-link">Along</a></span><span class="navigation-group-separator">&nbsp;|&nbsp;</span><span class="navigation-group"><a href="./transformation-algorithms.html" class="navigation-link">Up</a>&nbsp;<a href="../refmanual.html" class="navigation-link">Home</a></span><span class="navigation-group-separator">&nbsp;|&nbsp;</span><span class="navigation-group"><a href="./refmanual_toc.html" class="navigation-link">Full TOC</a></span></td>
12<td class="header-group page-location"><a href="../refmanual.html" class="navigation-link">Front Page</a> / <a href="./algorithms.html" class="navigation-link">Algorithms</a> / <a href="./transformation-algorithms.html" class="navigation-link">Transformation Algorithms</a> / <a href="./transform.html" class="navigation-link">transform</a></td>
13</tr></table><div class="header-separator"></div>
14<div class="section" id="transform">
15<h1><a class="toc-backref" href="./transformation-algorithms.html#id416" name="transform">transform</a></h1>
16<div class="section" id="transformation-transform-synopsis">
17<h3><a class="subsection-title" href="#synopsis" name="synopsis">Synopsis</a></h3>
18<pre class="literal-block">
19template&lt;
20      typename Seq
21    , typename Op
22    , typename In = <em>unspecified</em>
23    &gt;
24struct <a href="./transform.html" class="identifier">transform</a>
25{
26    typedef <em>unspecified</em> type;
27};
28
29template&lt;
30      typename Seq1
31    , typename Seq2
32    , typename BinaryOp
33    , typename In = <em>unspecified</em>
34    &gt;
35struct <a href="./transform.html" class="identifier">transform</a>
36{
37    typedef <em>unspecified</em> type;
38};
39</pre>
40</div>
41<div class="section" id="transformation-transform-description">
42<h3><a class="subsection-title" href="#description" name="description">Description</a></h3>
43<p><tt class="literal"><span class="pre"><a href="./transform.html" class="identifier">transform</a></span></tt> is an <a class="reference" href="./terminology.html#overloaded-name">overloaded name</a>:</p>
44<ul class="simple">
45<li><tt class="literal"><span class="pre"><a href="./transform.html" class="identifier">transform</a>&lt;Seq,Op&gt;</span></tt> returns a transformed copy of the original sequence
46produced by applying an unary transformation <tt class="literal"><span class="pre">Op</span></tt> to every element
47in the [<tt class="literal"><span class="pre"><a href="./begin.html" class="identifier">begin</a>&lt;Sequence&gt;::type</span></tt>, <tt class="literal"><span class="pre"><a href="./end.html" class="identifier">end</a>&lt;Sequence&gt;::type</span></tt>) range.</li>
48<li><tt class="literal"><span class="pre"><a href="./transform.html" class="identifier">transform</a>&lt;Seq1,Seq2,Op&gt;</span></tt> returns a new sequence produced by applying a
49binary transformation <tt class="literal"><span class="pre">BinaryOp</span></tt> to a pair of elements (e<sub>1</sub>, e2<sub>1</sub>)
50from the corresponding [<tt class="literal"><span class="pre"><a href="./begin.html" class="identifier">begin</a>&lt;Seq1&gt;::type</span></tt>, <tt class="literal"><span class="pre"><a href="./end.html" class="identifier">end</a>&lt;Seq1&gt;::type</span></tt>) and [<tt class="literal"><span class="pre"><a href="./begin.html" class="identifier">begin</a>&lt;Seq2&gt;::type</span></tt>, <tt class="literal"><span class="pre"><a href="./end.html" class="identifier">end</a>&lt;Seq2&gt;::type</span></tt>) ranges.</li>
51</ul>
52<p>[<em>Note:</em> This wording applies to a no-inserter version(s) of the algorithm. See the
53<cite>Expression semantics</cite> subsection for a precise specification of the algorithm's
54details in all cases — <em>end note</em>]</p>
55</div>
56<div class="section" id="transformation-transform-header">
57<h3><a class="subsection-title" href="#header" name="header">Header</a></h3>
58<pre class="literal-block">
59#include &lt;<a href="../../../../boost/mpl/transform.hpp" class="header">boost/mpl/transform.hpp</a>&gt;
60</pre>
61</div>
62<div class="section" id="transformation-transform-model-of">
63<h3><a class="subsection-title" href="#model-of" name="model-of">Model of</a></h3>
64<p><a class="reference" href="./reversible-algorithm.html">Reversible Algorithm</a></p>
65</div>
66<div class="section" id="transformation-transform-parameters">
67<h3><a class="subsection-title" href="#parameters" name="parameters">Parameters</a></h3>
68<table border="1" class="table">
69<colgroup>
70<col width="21%" />
71<col width="39%" />
72<col width="39%" />
73</colgroup>
74<thead valign="bottom">
75<tr><th>Parameter</th>
76<th>Requirement</th>
77<th>Description</th>
78</tr>
79</thead>
80<tbody valign="top">
81<tr><td><tt class="literal"><span class="pre">Sequence</span></tt>,
82<tt class="literal"><span class="pre">Seq1</span></tt>, <tt class="literal"><span class="pre">Seq2</span></tt></td>
83<td><a class="reference" href="./forward-sequence.html">Forward Sequence</a></td>
84<td>Sequences to transform.</td>
85</tr>
86<tr><td><tt class="literal"><span class="pre">Op</span></tt>,
87<tt class="literal"><span class="pre">BinaryOp</span></tt></td>
88<td><a class="reference" href="./lambda-expression.html">Lambda Expression</a></td>
89<td>A transformation.</td>
90</tr>
91<tr><td><tt class="literal"><span class="pre">In</span></tt></td>
92<td><a class="reference" href="./inserter.html">Inserter</a></td>
93<td>An inserter.</td>
94</tr>
95</tbody>
96</table>
97</div>
98<div class="section" id="transformation-transform-expression-semantics">
99<h3><a class="subsection-title" href="#expression-semantics" name="expression-semantics">Expression semantics</a></h3>
100<p>The semantics of an expression are defined only
101where they differ from, or are not defined in <a class="reference" href="./reversible-algorithm.html">Reversible Algorithm</a>.</p>
102<p>For any <a class="reference" href="./forward-sequence.html">Forward Sequence</a>s <tt class="literal"><span class="pre">s</span></tt>, <tt class="literal"><span class="pre">s1</span></tt> and <tt class="literal"><span class="pre">s2</span></tt>, <a class="reference" href="./lambda-expression.html">Lambda Expression</a>s <tt class="literal"><span class="pre">op</span></tt> and <tt class="literal"><span class="pre">op2</span></tt>,
103and an <a class="reference" href="./inserter.html">Inserter</a> <tt class="literal"><span class="pre">in</span></tt>:</p>
104<pre class="literal-block">
105typedef <a href="./transform.html" class="identifier">transform</a>&lt;s,op,in&gt;::type r;
106</pre>
107<table class="field-list" frame="void" rules="none">
108<col class="field-name" />
109<col class="field-body" />
110<tbody valign="top">
111<tr class="field"><th class="field-name">Return type:</th><td class="field-body">A type.</td>
112</tr>
113<tr class="field"><th class="field-name">Postcondition:</th><td class="field-body"><p class="first">Equivalent to</p>
114<pre class="last literal-block">
115typedef <a href="./lambda.html" class="identifier">lambda</a>&lt;op&gt;::type f;
116typedef <a href="./lambda.html" class="identifier">lambda</a>&lt;in::operation&gt;::type in_op;
117
118typedef <a href="./fold.html" class="identifier">fold</a>&lt; 
119      s
120    , in::state
121    , <a href="./bind.html" class="identifier">bind</a>&lt; in_op, _1, <a href="./bind.html" class="identifier">bind</a>&lt;f, _2&gt; &gt; 
122    &gt;::type r;
123</pre>
124</td>
125</tr>
126</tbody>
127</table>
128<pre class="literal-block">
129typedef <a href="./transform.html" class="identifier">transform</a>&lt;s1,s2,op,in&gt;::type r;
130</pre>
131<table class="field-list" frame="void" rules="none">
132<col class="field-name" />
133<col class="field-body" />
134<tbody valign="top">
135<tr class="field"><th class="field-name">Return type:</th><td class="field-body">A type.</td>
136</tr>
137<tr class="field"><th class="field-name">Postcondition:</th><td class="field-body"><p class="first">Equivalent to</p>
138<pre class="last literal-block">
139typedef <a href="./lambda.html" class="identifier">lambda</a>&lt;op2&gt;::type f;
140typedef <a href="./lambda.html" class="identifier">lambda</a>&lt;in::operation&gt;::type in_op;
141
142typedef <a href="./fold.html" class="identifier">fold</a>&lt; 
143      pair_view&lt;s1,s2&gt;
144    , in::state
145    , <a href="./bind.html" class="identifier">bind</a>&lt; 
146          in_op
147        , _1
148        , <a href="./bind.html" class="identifier">bind</a>&lt;f, <a href="./bind.html" class="identifier">bind</a>&lt;first&lt;&gt;,_2&gt;, <a href="./bind.html" class="identifier">bind</a>&lt;second&lt;&gt;,_2&gt; &gt;
149        &gt; 
150    &gt;::type r;
151</pre>
152</td>
153</tr>
154</tbody>
155</table>
156</div>
157<div class="section" id="transform-complexity">
158<h3><a class="subsection-title" href="#complexity" name="complexity">Complexity</a></h3>
159<p>Linear. Exactly <tt class="literal"><span class="pre"><a href="./size.html" class="identifier">size</a>&lt;s&gt;::value</span></tt> / <tt class="literal"><span class="pre"><a href="./size.html" class="identifier">size</a>&lt;s1&gt;::value</span></tt> applications of
160<tt class="literal"><span class="pre">op</span></tt> / <tt class="literal"><span class="pre">op2</span></tt> and <tt class="literal"><span class="pre">in::operation</span></tt>.</p>
161</div>
162<div class="section" id="transformation-transform-example">
163<h3><a class="subsection-title" href="#example" name="example">Example</a></h3>
164<pre class="literal-block">
165typedef <a href="./vector.html" class="identifier">vector</a>&lt;char,short,int,long,float,double&gt; types;
166typedef <a href="./vector.html" class="identifier">vector</a>&lt;char*,short*,int*,long*,float*,double*&gt; pointers;
167typedef <a href="./transform.html" class="identifier">transform</a>&lt; types,boost::add_pointer&lt;_1&gt; &gt;::type result;
168
169<a href="./assert.html" class="identifier">BOOST_MPL_ASSERT</a>(( <a href="./equal.html" class="identifier">equal</a>&lt;result,pointers&gt; ));
170</pre>
171</div>
172<div class="section" id="transformation-transform-see-also">
173<h3><a class="subsection-title" href="#see-also" name="see-also">See also</a></h3>
174<p><a class="reference" href="./transformation-algorithms.html">Transformation Algorithms</a>, <a class="reference" href="./reversible-algorithm.html">Reversible Algorithm</a>, <a class="refentry reference" href="./reverse-transform.html"><tt class="refentry literal"><span class="pre">reverse_transform</span></tt></a>, <a class="refentry reference" href="./copy.html"><tt class="refentry literal"><span class="pre">copy</span></tt></a>, <a class="refentry reference" href="./replace-if.html"><tt class="refentry literal"><span class="pre">replace_if</span></tt></a></p>
175<!-- modtime: November 10, 2004 04:31:13 +0000 -->
176<!-- Algorithms/Transformation Algorithms//replace |40 -->
177</div>
178</div>
179
180<div class="footer-separator"></div>
181<table class="footer"><tr class="footer"><td class="header-group navigation-bar"><span class="navigation-group"><a href="./copy-if.html" class="navigation-link">Prev</a>&nbsp;<a href="./replace.html" class="navigation-link">Next</a></span><span class="navigation-group-separator">&nbsp;|&nbsp;</span><span class="navigation-group"><a href="./copy-if.html" class="navigation-link">Back</a>&nbsp;<a href="./replace.html" class="navigation-link">Along</a></span><span class="navigation-group-separator">&nbsp;|&nbsp;</span><span class="navigation-group"><a href="./transformation-algorithms.html" class="navigation-link">Up</a>&nbsp;<a href="../refmanual.html" class="navigation-link">Home</a></span><span class="navigation-group-separator">&nbsp;|&nbsp;</span><span class="navigation-group"><a href="./refmanual_toc.html" class="navigation-link">Full TOC</a></span></td>
182</tr></table></body>
183</html>
Note: See TracBrowser for help on using the repository browser.