variadic_to_tuple.html 1.4 KB

1234567891011121314151617181920212223242526272829303132
  1. <html>
  2. <head>
  3. <title>BOOST_PP_VARIADIC_TO_TUPLE</title>
  4. <link rel="stylesheet" type="text/css" href="../styles.css">
  5. </head>
  6. <body>
  7. <div style="margin-left: 0px;"> The <b>BOOST_PP_VARIADIC_TO_TUPLE</b> variadic macro
  8. converts <i>variadic data </i>to a <i>tuple</i>. </div>
  9. <h4> Usage </h4>
  10. <div class="code"> <b>BOOST_PP_VARIADIC_TO_TUPLE</b>(<i>...</i>)<a href="../topics/variadic_macros.html#VNotation" target="_self"><sup>(v)</sup></a> </div>
  11. <h4> Arguments </h4>
  12. <dl>
  13. <dt>...<br>
  14. </dt>
  15. <dd> The <i>variadic data</i> to be converted. </dd>
  16. </dl>
  17. <h4> Requirements </h4>
  18. <div> <b>Header:</b> &nbsp;<a href="../headers/variadic/to_tuple.html">&lt;boost/preprocessor/variadic/to_tuple.hpp&gt;</a>
  19. </div>
  20. <h4> Sample Code </h4>
  21. <div>
  22. <pre>#include &lt;<a href="../headers/variadic/to_tuple.html">boost/preprocessor/variadic/to_tuple.hpp</a>&gt;<br><br>#define VAR_DATA a, b, c<br><br><a href="variadic_to_tuple.html">BOOST_PP_VARIADIC_TO_TUPLE</a>(VAR_DATA) // expands to (a, b, c)<br></pre>
  23. </div>
  24. <hr size="1">
  25. <div style="margin-left: 0px;"> <i></i><i>© Copyright Edward Diener 2011,2013</i> </div>
  26. <div style="margin-left: 0px;">
  27. <p><small>Distributed under the Boost Software License, Version 1.0.
  28. (See accompanying file <a href="../../../../LICENSE_1_0.txt">LICENSE_1_0.txt</a>
  29. or copy at <a href="http://www.boost.org/LICENSE_1_0.txt">www.boost.org/LICENSE_1_0.txt</a>)</small></p>
  30. </div>
  31. </body>
  32. </html>