]> git.lyx.org Git - lyx.git/blob - boost/boost/preprocessor/list.hpp
update
[lyx.git] / boost / boost / preprocessor / list.hpp
1 #ifndef BOOST_PREPROCESSOR_LIST_HPP
2 #define BOOST_PREPROCESSOR_LIST_HPP
3
4 /* Copyright (C) 2001
5  * Housemarque Oy
6  * http://www.housemarque.com
7  *
8  * Permission to copy, use, modify, sell and distribute this software is
9  * granted provided this copyright notice appears in all copies. This
10  * software is provided "as is" without express or implied warranty, and
11  * with no claim as to its suitability for any purpose.
12  *
13  * See http://www.boost.org for most recent version.
14  */
15
16 /** <p>Includes all list headers.</p>
17
18 <p>A list is an arbitrary size collection of elements.</p>
19
20 <p>In the preprocessor library, the internal representation of lists
21 uses parts that are like macro parameter lists. Thus an element of a list
22 can be any sequence of tokens that constitutes a single macro parameter.</p>
23
24 <p>Lists are manipulated using both list ADT macros and higher-order macros. For an introduction to manipulation of lists in functional programming, see
25 <a href="../bibliography.htm#[Thompson]">[Thompson]</a>,
26 <a href="../bibliography.htm#[Abelson]">[Abelson]</a> or
27 <a href="../bibliography.htm#[Cousineau]">[Cousineau]</a>.</p>
28 */
29
30 #include <boost/preprocessor/list/append.hpp>
31 #include <boost/preprocessor/list/at.hpp>
32 #include <boost/preprocessor/list/cat.hpp>
33 #include <boost/preprocessor/list/filter.hpp>
34 #include <boost/preprocessor/list/first_n.hpp>
35 #include <boost/preprocessor/list/for_each.hpp>
36 #include <boost/preprocessor/list/for_each_product.hpp>
37 #include <boost/preprocessor/list/size.hpp>
38 #include <boost/preprocessor/list/to_tuple.hpp>
39 #include <boost/preprocessor/list/transform.hpp>
40 #endif