• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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		<i>� Copyright <a href="http://www.housemarque.com" target="_top">Housemarque Oy</a> 2002</i>
59		</br><i>� Copyright Paul Mensonides 2002</i>
60	</div>
61	<div style="margin-left: 0px;">
62		<p><small>Distributed under the Boost Software License, Version 1.0. (See
63		accompanying file <a href="../../../../LICENSE_1_0.txt">LICENSE_1_0.txt</a> or
64		copy at <a href=
65		"http://www.boost.org/LICENSE_1_0.txt">www.boost.org/LICENSE_1_0.txt</a>)</small></p>
66	</div>
67	</body>
68</html>
69