mirror of
https://github.com/boostorg/preprocessor.git
synced 2025-07-05 00:36:31 +02:00
53 lines
1.0 KiB
HTML
53 lines
1.0 KiB
HTML
<html>
|
|
<head>
|
|
<title>BOOST_PP_SEQ_HEAD</title>
|
|
<link rel="stylesheet" type="text/css" href="../styles.css">
|
|
</head>
|
|
<body>
|
|
<div style="margin-left: 0px;">
|
|
The <b>BOOST_PP_SEQ_HEAD</b> macro expands to the first element in a <i>seq</i>.
|
|
</div>
|
|
<h4>
|
|
Usage
|
|
</h4>
|
|
<div class="code">
|
|
<b>BOOST_PP_SEQ_HEAD</b>(<i>seq</i>)
|
|
</div>
|
|
<h4>
|
|
Arguments
|
|
</h4>
|
|
<dl>
|
|
<dt>seq</dt>
|
|
<dd>
|
|
The <i>seq</i> from which the first element is extracted.
|
|
</dd>
|
|
</dl>
|
|
<h4>
|
|
See Also
|
|
</h4>
|
|
<ul>
|
|
<li>
|
|
<a href="seq_tail.html">BOOST_PP_SEQ_TAIL</a></li>
|
|
</ul>
|
|
<h4>
|
|
Requirements
|
|
</h4>
|
|
<div>
|
|
<b>Header:</b> <a href="../headers/seq/seq.html"><boost/preprocessor/seq/seq.hpp></a>
|
|
</div>
|
|
<h4>
|
|
Sample Code
|
|
</h4>
|
|
<div>
|
|
<pre>
|
|
#include <<a href="../headers/seq/seq.html">boost/preprocessor/seq/seq.hpp</a>>
|
|
|
|
#define SEQ (a)(b)(c)
|
|
|
|
<a href="seq_head.html">BOOST_PP_SEQ_HEAD</a>(SEQ) // expands to a
|
|
<a href="seq_tail.html">BOOST_PP_SEQ_TAIL</a>(SEQ) // expands to (b)(c)
|
|
</pre>
|
|
</div>
|
|
</body>
|
|
</html>
|