Chris@16
|
1
|
Chris@16
|
2 #ifndef BOOST_MPL_COPY_IF_HPP_INCLUDED
|
Chris@16
|
3 #define BOOST_MPL_COPY_IF_HPP_INCLUDED
|
Chris@16
|
4
|
Chris@16
|
5 // Copyright Aleksey Gurtovoy 2000-2004
|
Chris@16
|
6 // Copyright David Abrahams 2003-2004
|
Chris@16
|
7 //
|
Chris@16
|
8 // Distributed under the Boost Software License, Version 1.0.
|
Chris@16
|
9 // (See accompanying file LICENSE_1_0.txt or copy at
|
Chris@16
|
10 // http://www.boost.org/LICENSE_1_0.txt)
|
Chris@16
|
11 //
|
Chris@16
|
12 // See http://www.boost.org/libs/mpl for documentation.
|
Chris@16
|
13
|
Chris@101
|
14 // $Id$
|
Chris@101
|
15 // $Date$
|
Chris@101
|
16 // $Revision$
|
Chris@16
|
17
|
Chris@16
|
18 #include <boost/mpl/fold.hpp>
|
Chris@16
|
19 #include <boost/mpl/reverse_fold.hpp>
|
Chris@16
|
20 #include <boost/mpl/apply.hpp>
|
Chris@16
|
21 #include <boost/mpl/eval_if.hpp>
|
Chris@16
|
22 #include <boost/mpl/identity.hpp>
|
Chris@16
|
23 #include <boost/mpl/protect.hpp>
|
Chris@16
|
24 #include <boost/mpl/aux_/inserter_algorithm.hpp>
|
Chris@16
|
25 #include <boost/mpl/aux_/config/forwarding.hpp>
|
Chris@16
|
26
|
Chris@16
|
27 namespace boost { namespace mpl {
|
Chris@16
|
28
|
Chris@16
|
29 namespace aux {
|
Chris@16
|
30
|
Chris@16
|
31 template<
|
Chris@16
|
32 typename Operation
|
Chris@16
|
33 , typename Predicate
|
Chris@16
|
34 >
|
Chris@16
|
35 struct copy_if_op
|
Chris@16
|
36 {
|
Chris@16
|
37 template< typename Sequence, typename T > struct apply
|
Chris@16
|
38 #if !defined(BOOST_MPL_CFG_NO_NESTED_FORWARDING)
|
Chris@16
|
39 : eval_if<
|
Chris@16
|
40 typename apply1<Predicate,T>::type
|
Chris@16
|
41 , apply2<Operation,Sequence,T>
|
Chris@16
|
42 , identity<Sequence>
|
Chris@16
|
43 >
|
Chris@16
|
44 {
|
Chris@16
|
45 #else
|
Chris@16
|
46 {
|
Chris@16
|
47 typedef typename eval_if<
|
Chris@16
|
48 typename apply1<Predicate,T>::type
|
Chris@16
|
49 , apply2<Operation,Sequence,T>
|
Chris@16
|
50 , identity<Sequence>
|
Chris@16
|
51 >::type type;
|
Chris@16
|
52 #endif
|
Chris@16
|
53 };
|
Chris@16
|
54 };
|
Chris@16
|
55
|
Chris@16
|
56 template<
|
Chris@16
|
57 typename Sequence
|
Chris@16
|
58 , typename Predicate
|
Chris@16
|
59 , typename Inserter
|
Chris@16
|
60 >
|
Chris@16
|
61 struct copy_if_impl
|
Chris@16
|
62 : fold<
|
Chris@16
|
63 Sequence
|
Chris@16
|
64 , typename Inserter::state
|
Chris@16
|
65 , protect< aux::copy_if_op<
|
Chris@16
|
66 typename Inserter::operation
|
Chris@16
|
67 , Predicate
|
Chris@16
|
68 > >
|
Chris@16
|
69 >
|
Chris@16
|
70 {
|
Chris@16
|
71 };
|
Chris@16
|
72
|
Chris@16
|
73 template<
|
Chris@16
|
74 typename Sequence
|
Chris@16
|
75 , typename Predicate
|
Chris@16
|
76 , typename Inserter
|
Chris@16
|
77 >
|
Chris@16
|
78 struct reverse_copy_if_impl
|
Chris@16
|
79 : reverse_fold<
|
Chris@16
|
80 Sequence
|
Chris@16
|
81 , typename Inserter::state
|
Chris@16
|
82 , protect< aux::copy_if_op<
|
Chris@16
|
83 typename Inserter::operation
|
Chris@16
|
84 , Predicate
|
Chris@16
|
85 > >
|
Chris@16
|
86 >
|
Chris@16
|
87 {
|
Chris@16
|
88 };
|
Chris@16
|
89
|
Chris@16
|
90 } // namespace aux
|
Chris@16
|
91
|
Chris@16
|
92 BOOST_MPL_AUX_INSERTER_ALGORITHM_DEF(3, copy_if)
|
Chris@16
|
93
|
Chris@16
|
94 }}
|
Chris@16
|
95
|
Chris@16
|
96 #endif // BOOST_MPL_COPY_IF_HPP_INCLUDED
|