list_fold_left_2nd.html 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. <html>
  2. <head>
  3. <title>BOOST_PP_LIST_FOLD_LEFT_2ND</title>
  4. <link rel="stylesheet" type="text/css" href="../styles.css">
  5. </head>
  6. <body>
  7. <div style="margin-left: 0px;">
  8. The <b>BOOST_PP_LIST_FOLD_LEFT_2ND</b> macro folds (or accumulates) the elements of a <i>list</i> left-to-right.
  9. </div>
  10. <h4>Usage</h4>
  11. <div class="code">
  12. <b>BOOST_PP_LIST_FOLD_LEFT_2ND</b>(<i>op</i>, <i>state</i>, <i>list</i>)
  13. </div>
  14. <h4>Arguments</h4>
  15. <dl>
  16. <dt>op</dt>
  17. <dd>
  18. A ternary operation of the form <i>op</i>(<i>d</i>, <i>state</i>, <i>elem</i>).&nbsp;
  19. This macro is called for each element in <i>list</i>--each time returning a new <i>state</i>.&nbsp;
  20. This operation is expanded by <b>BOOST_PP_LIST_FOLD_LEFT</b> with the next available <b>BOOST_PP_WHILE</b> iteration,
  21. the current <i>state</i>, and the current element.
  22. </dd>
  23. <dt>state</dt>
  24. <dd>
  25. The initial state of the fold.
  26. </dd>
  27. <dt>list</dt>
  28. <dd>
  29. The <i>list</i> to be folded.
  30. </dd>
  31. </dl>
  32. <h4>Remarks</h4>
  33. <div>
  34. For the <i>list</i>, (<i>0</i>, (<i>1</i>, (<i>2</i>, <b>BOOST_PP_NIL</b>))), this macro expands to:
  35. <div>
  36. <i>op</i>(<i>d</i>, <i>op</i>(<i>d</i>, <i>op</i>(<i>d</i>, <i>state</i>, <i>0</i>), <i>1</i>), <i>2</i>)
  37. </div>
  38. </div>
  39. <div>
  40. This macro is deprecated.&nbsp;
  41. Use <b>BOOST_PP_LIST_FOLD_LEFT_<i>d</i></b> instead.
  42. </div>
  43. <h4>See Also</h4>
  44. <ul>
  45. <li><a href="list_fold_left.html">BOOST_PP_LIST_FOLD_LEFT</a></li>
  46. <li><a href="list_fold_left_d.html">BOOST_PP_LIST_FOLD_LEFT_<i>d</i></a></li>
  47. </ul>
  48. <h4>Requirements</h4>
  49. <div>
  50. <b>Header:</b> &nbsp;<a href="../headers/list/fold_left.html">&lt;boost/preprocessor/list/fold_left.hpp&gt;</a>
  51. </div>
  52. <h4>Sample Code</h4>
  53. <div><pre>
  54. #include &lt;<a href="../headers/cat.html">boost/preprocessor/cat.hpp</a>&gt;
  55. #include &lt;<a href="../headers/list/fold_left.html">boost/preprocessor/list/fold_left.hpp</a>&gt;
  56. #define LIST (a, (b, (c, <a href="nil.html">BOOST_PP_NIL</a>)))
  57. #define OP(d, state, x) <a href="cat.html">BOOST_PP_CAT</a>(state, x)
  58. <a href="list_fold_left_2nd.html">BOOST_PP_LIST_FOLD_LEFT_2ND</a>(OP, _, LIST) // expands to _abc
  59. </pre></div>
  60. <hr size="1">
  61. <div style="margin-left: 0px;">
  62. <i>© Copyright <a href="http://www.housemarque.com" target="_top">Housemarque Oy</a> 2002</i>
  63. </br><i>© Copyright Paul Mensonides 2002</i>
  64. </div>
  65. <div style="margin-left: 0px;">
  66. <p><small>Distributed under the Boost Software License, Version 1.0. (See
  67. accompanying file <a href="../../../../LICENSE_1_0.txt">LICENSE_1_0.txt</a> or
  68. copy at <a href=
  69. "http://www.boost.org/LICENSE_1_0.txt">www.boost.org/LICENSE_1_0.txt</a>)</small></p>
  70. </div>
  71. </body>
  72. </html>