reverse-transform.html 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  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.7: http://docutils.sourceforge.net/" />
  7. <title>The MPL Reference Manual: reverse_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="./reverse-copy-if.html" class="navigation-link">Prev</a>&nbsp;<a href="./reverse-replace.html" class="navigation-link">Next</a></span><span class="navigation-group-separator">&nbsp;|&nbsp;</span><span class="navigation-group"><a href="./reverse-copy-if.html" class="navigation-link">Back</a>&nbsp;<a href="./reverse-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="./reverse-transform.html" class="navigation-link">reverse_transform</a></td>
  13. </tr></table><div class="header-separator"></div>
  14. <div class="section" id="reverse-transform">
  15. <h1><a class="toc-backref" href="./transformation-algorithms.html#id1500">reverse_transform</a></h1>
  16. <div class="section" id="id740">
  17. <h3><a class="subsection-title" href="#synopsis" name="synopsis">Synopsis</a></h3>
  18. <pre class="literal-block">
  19. template&lt;
  20. typename Seq
  21. , typename Op
  22. , typename In = <em>unspecified</em>
  23. &gt;
  24. struct <a href="./reverse-transform.html" class="identifier">reverse_transform</a>
  25. {
  26. typedef <em>unspecified</em> type;
  27. };
  28. template&lt;
  29. typename Seq1
  30. , typename Seq2
  31. , typename BinaryOp
  32. , typename In = <em>unspecified</em>
  33. &gt;
  34. struct <a href="./reverse-transform.html" class="identifier">reverse_transform</a>
  35. {
  36. typedef <em>unspecified</em> type;
  37. };
  38. </pre>
  39. </div>
  40. <div class="section" id="id741">
  41. <h3><a class="subsection-title" href="#description" name="description">Description</a></h3>
  42. <p><tt class="literal"><span class="pre"><a href="./reverse-transform.html" class="identifier">reverse_transform</a></span></tt> is an <a class="reference internal" href="./terminology.html#overloaded-name">overloaded name</a>:</p>
  43. <ul class="simple">
  44. <li><tt class="literal"><span class="pre"><a href="./reverse-transform.html" class="identifier">reverse_transform</a>&lt;Seq,Op&gt;</span></tt> returns a reversed, transformed copy of the
  45. original sequence produced by applying an unary transformation <tt class="literal"><span class="pre">Op</span></tt> to
  46. every element in 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>
  47. <li><tt class="literal"><span class="pre"><a href="./reverse-transform.html" class="identifier">reverse_transform</a>&lt;Seq1,Seq2,Op&gt;</span></tt> returns a new sequence produced by applying a
  48. binary transformation <tt class="literal"><span class="pre">BinaryOp</span></tt> to a pair of elements (e<sub>1</sub>, e2<sub>1</sub>)
  49. from 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 in reverse
  50. order.</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
  54. details in all cases — <em>end note</em>]</p>
  55. </div>
  56. <div class="section" id="id742">
  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="id743">
  63. <h3><a class="subsection-title" href="#model-of" name="model-of">Model of</a></h3>
  64. <p><a class="reference internal" href="./reversible-algorithm.html">Reversible Algorithm</a></p>
  65. </div>
  66. <div class="section" id="id744">
  67. <h3><a class="subsection-title" href="#parameters" name="parameters">Parameters</a></h3>
  68. <table border="1" class="docutils table">
  69. <colgroup>
  70. <col width="21%" />
  71. <col width="39%" />
  72. <col width="39%" />
  73. </colgroup>
  74. <thead valign="bottom">
  75. <tr><th class="head">Parameter</th>
  76. <th class="head">Requirement</th>
  77. <th class="head">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 internal" 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 internal" 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 internal" href="./inserter.html">Inserter</a></td>
  93. <td>An inserter.</td>
  94. </tr>
  95. </tbody>
  96. </table>
  97. </div>
  98. <div class="section" id="id745">
  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
  101. where they differ from, or are not defined in <a class="reference internal" href="./reversible-algorithm.html">Reversible Algorithm</a>.</p>
  102. <p>For any <a class="reference internal" 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 internal" 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>,
  103. and an <a class="reference internal" href="./inserter.html">Inserter</a> <tt class="literal"><span class="pre">in</span></tt>:</p>
  104. <pre class="literal-block">
  105. typedef <a href="./reverse-transform.html" class="identifier">reverse_transform</a>&lt;s,op,in&gt;::type r;
  106. </pre>
  107. <table class="docutils 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"><p class="first">A type.</p>
  112. </td>
  113. </tr>
  114. <tr class="field"><th class="field-name">Postcondition:</th><td class="field-body"><p class="first">Equivalent to</p>
  115. <pre class="last literal-block">
  116. typedef <a href="./lambda.html" class="identifier">lambda</a>&lt;op&gt;::type f;
  117. typedef <a href="./lambda.html" class="identifier">lambda</a>&lt;in::operation&gt;::type in_op;
  118. typedef <a href="./reverse-fold.html" class="identifier">reverse_fold</a>&lt;
  119. s
  120. , in::state
  121. , <a href="./bind.html" class="identifier">bind</a>&lt; in_op, <a href="./placeholders.html" class="identifier">_1</a>, <a href="./bind.html" class="identifier">bind</a>&lt;f, <a href="./placeholders.html" class="identifier">_2</a>&gt; &gt;
  122. &gt;::type r;
  123. </pre>
  124. </td>
  125. </tr>
  126. </tbody>
  127. </table>
  128. <pre class="literal-block">
  129. typedef <a href="./transform.html" class="identifier">transform</a>&lt;s1,s2,op,in&gt;::type r;
  130. </pre>
  131. <table class="docutils 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"><p class="first">A type.</p>
  136. </td>
  137. </tr>
  138. <tr class="field"><th class="field-name">Postcondition:</th><td class="field-body"><p class="first">Equivalent to</p>
  139. <pre class="last literal-block">
  140. typedef <a href="./lambda.html" class="identifier">lambda</a>&lt;op2&gt;::type f;
  141. typedef <a href="./lambda.html" class="identifier">lambda</a>&lt;in::operation&gt;::type in_op;
  142. typedef <a href="./reverse-fold.html" class="identifier">reverse_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. , <a href="./placeholders.html" class="identifier">_1</a>
  148. , <a href="./bind.html" class="identifier">bind</a>&lt;f, <a href="./bind.html" class="identifier">bind</a>&lt;first&lt;&gt;,<a href="./placeholders.html" class="identifier">_2</a>&gt;, <a href="./bind.html" class="identifier">bind</a>&lt;second&lt;&gt;,<a href="./placeholders.html" class="identifier">_2</a>&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="id746">
  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="id747">
  163. <h3><a class="subsection-title" href="#example" name="example">Example</a></h3>
  164. <pre class="literal-block">
  165. typedef <a href="./vector.html" class="identifier">vector</a>&lt;char,short,int,long,float,double&gt; types;
  166. typedef <a href="./vector.html" class="identifier">vector</a>&lt;double*,float*,long*,int*,short*,char*&gt; pointers;
  167. typedef <a href="./reverse-transform.html" class="identifier">reverse_transform</a>&lt; types,boost::add_pointer&lt;<a href="./placeholders.html" class="identifier">_1</a>&gt; &gt;::type result;
  168. <a href="./assert.html" class="identifier">BOOST_MPL_ASSERT</a>(( <a href="./equal.html" class="identifier">equal</a>&lt;result,pointers&gt; ));
  169. </pre>
  170. </div>
  171. <div class="section" id="id748">
  172. <h3><a class="subsection-title" href="#see-also" name="see-also">See also</a></h3>
  173. <p><a class="reference internal" href="./transformation-algorithms.html">Transformation Algorithms</a>, <a class="reference internal" href="./reversible-algorithm.html">Reversible Algorithm</a>, <a class="reference internal" href="./transform.html">transform</a>, <a class="reference internal" href="./reverse-copy.html">reverse_copy</a>, <a class="reference internal" href="./replace-if.html">replace_if</a></p>
  174. <!-- Algorithms/Transformation Algorithms//reverse_replace |140 -->
  175. </div>
  176. </div>
  177. <div class="footer-separator"></div>
  178. <table class="footer"><tr class="footer"><td class="header-group navigation-bar"><span class="navigation-group"><a href="./reverse-copy-if.html" class="navigation-link">Prev</a>&nbsp;<a href="./reverse-replace.html" class="navigation-link">Next</a></span><span class="navigation-group-separator">&nbsp;|&nbsp;</span><span class="navigation-group"><a href="./reverse-copy-if.html" class="navigation-link">Back</a>&nbsp;<a href="./reverse-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>
  179. <td><div class="copyright-footer"><div class="copyright">Copyright © 2001-2009 Aleksey Gurtovoy and David Abrahams</div>
  180. Distributed under the Boost Software License, Version 1.0. (See accompanying
  181. file LICENSE_1_0.txt or copy at <a class="reference external" href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>)</div></td></tr></table></body>
  182. </html>