Attempt to represent the S^2->S^3 header reorganisation as a series of "hg rename" operations
1 // -- core.hpp -- Boost Lambda Library -------------------------------------
3 // Copyright (C) 2000 Gary Powell (powellg@amazon.com)
4 // Copyright (C) 1999, 2000 Jaakko Järvi (jaakko.jarvi@cs.utu.fi)
6 // Distributed under the Boost Software License, Version 1.0. (See
7 // accompanying file LICENSE_1_0.txt or copy at
8 // http://www.boost.org/LICENSE_1_0.txt)
10 // For more information, see www.boost.org
12 // Includes the core of LL, without any real features for client:
14 // tuples, lambda functors, return type deduction templates,
15 // argument substitution mechanism (select functions)
17 // Some functionality comes as well:
18 // Assignment and subscript operators, as well as function
19 // call operator for placeholder variables.
20 // -------------------------------------------------------------------------
22 #ifndef BOOST_LAMBDA_CORE_HPP
23 #define BOOST_LAMBDA_CORE_HPP
25 #include "boost/type_traits/transform_traits.hpp"
26 #include "boost/type_traits/cv_traits.hpp"
28 #include "boost/tuple/tuple.hpp"
30 // inject some of the tuple names into lambda
34 using ::boost::tuples::tuple;
35 using ::boost::tuples::null_type;
40 #include "boost/lambda/detail/lambda_config.hpp"
41 #include "boost/lambda/detail/lambda_fwd.hpp"
43 #include "boost/lambda/detail/arity_code.hpp"
44 #include "boost/lambda/detail/actions.hpp"
46 #include "boost/lambda/detail/lambda_traits.hpp"
48 #include "boost/lambda/detail/function_adaptors.hpp"
49 #include "boost/lambda/detail/return_type_traits.hpp"
51 #include "boost/lambda/detail/select_functions.hpp"
53 #include "boost/lambda/detail/lambda_functor_base.hpp"
55 #include "boost/lambda/detail/lambda_functors.hpp"
57 #include "boost/lambda/detail/ret.hpp"
64 // These are constants types and need to be initialised
65 boost::lambda::placeholder1_type free1 = boost::lambda::placeholder1_type();
66 boost::lambda::placeholder2_type free2 = boost::lambda::placeholder2_type();
67 boost::lambda::placeholder3_type free3 = boost::lambda::placeholder3_type();
69 boost::lambda::placeholder1_type& _1 = free1;
70 boost::lambda::placeholder2_type& _2 = free2;
71 boost::lambda::placeholder3_type& _3 = free3;
72 // _1, _2, ... naming scheme by Peter Dimov
79 #endif //BOOST_LAMBDA_CORE_HPP