]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/preprocessor/doc/ref/seq_pop_front.html
bump version to 12.2.2-pve1
[ceph.git] / ceph / src / boost / libs / preprocessor / doc / ref / seq_pop_front.html
CommitLineData
7c673cae
FG
1<html>
2 <head>
3 <title>BOOST_PP_SEQ_POP_FRONT</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_POP_FRONT</b> macro pops an element from the beginning of a <i>seq</i>.
9 </div>
10 <h4>
11 Usage
12 </h4>
13 <div class="code">
14 <b>BOOST_PP_SEQ_POP_FRONT</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> to pop an element from.
23 </dd>
24 </dl>
25 <h4>
26 Remarks
27 </h4>
28 <div>
29 This macro returns <i>seq</i> after removing the first element.&nbsp;
30 </div>
31 <h4>
32 See Also
33 </h4>
34 <ul>
35 <li>
36 <a href="seq_pop_back.html">BOOST_PP_SEQ_POP_BACK</a></li>
37 </ul>
38 <h4>
39 Requirements
40 </h4>
41 <div>
42 <b>Header:</b> &nbsp;<a href="../headers/seq/pop_front.html">&lt;boost/preprocessor/seq/pop_front.hpp&gt;</a>
43 </div>
44 <h4>
45 Sample Code
46 </h4>
47 <div>
48 <pre>
49#include &lt;<a href="../headers/seq/pop_front.html">boost/preprocessor/seq/pop_front.hpp</a>&gt;
50
51#define SEQ (a)(b)(c)
52
53<a href="seq_pop_front.html">BOOST_PP_SEQ_POP_FRONT</a>(SEQ) // expands to (b)(c)
54</pre>
55 </div>
56 <hr size="1">
57 <div style="margin-left: 0px;">
58