seq_tail.html 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <html>
  2. <head>
  3. <title>BOOST_PP_SEQ_TAIL</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_SEQ_TAIL</b> macro expands to all but the first element of a <i>seq</i>.
  9. </div>
  10. <h4>
  11. Usage
  12. </h4>
  13. <div class="code">
  14. <b>BOOST_PP_SEQ_TAIL</b>(<i>seq</i>)
  15. </div>
  16. <h4>
  17. Arguments
  18. </h4>
  19. <dl>
  20. <dt>seq</dt>
  21. <dd>
  22. The <i>seq</i> from which the tail is extracted.
  23. </dd>
  24. </dl>
  25. <h4>
  26. See Also
  27. </h4>
  28. <ul>
  29. <li>
  30. <a href="seq_head.html">BOOST_PP_SEQ_HEAD</a></li>
  31. </ul>
  32. <h4>
  33. Requirements
  34. </h4>
  35. <div>
  36. <b>Header:</b> &nbsp;<a href="../headers/seq/seq.html">&lt;boost/preprocessor/seq/seq.hpp&gt;</a>
  37. </div>
  38. <h4>
  39. Sample Code
  40. </h4>
  41. <div>
  42. <pre>
  43. #include &lt;<a href="../headers/seq/seq.html">boost/preprocessor/seq/seq.hpp</a>&gt;
  44. #define SEQ (a)(b)(c)
  45. <a href="seq_head.html">BOOST_PP_SEQ_HEAD</a>(SEQ) // expands to a
  46. <a href="seq_tail.html">BOOST_PP_SEQ_TAIL</a>(SEQ) // expands to (b)(c)
  47. </pre>
  48. </div>
  49. <hr size="1">
  50. <div style="margin-left: 0px;">
  51. <i>© Copyright <a href="http://www.housemarque.com" target="_top">Housemarque Oy</a> 2002</i>
  52. </br><i>© Copyright Paul Mensonides 2002</i>
  53. </div>
  54. <div style="margin-left: 0px;">
  55. <p><small>Distributed under the Boost Software License, Version 1.0. (See
  56. accompanying file <a href="../../../../LICENSE_1_0.txt">LICENSE_1_0.txt</a> or
  57. copy at <a href=
  58. "http://www.boost.org/LICENSE_1_0.txt">www.boost.org/LICENSE_1_0.txt</a>)</small></p>
  59. </div>
  60. </body>
  61. </html>