]> AND Private Git Repository - canny.git/blob - stc/exp/ml_stc_linux_make_v1.0/include/boost/mpl/aux_/erase_impl.hpp
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
24046562586abd5d67ca2f5ae644eba080a398c3
[canny.git] / stc / exp / ml_stc_linux_make_v1.0 / include / boost / mpl / aux_ / erase_impl.hpp
1 \r
2 #ifndef BOOST_MPL_AUX_ERASE_IMPL_HPP_INCLUDED\r
3 #define BOOST_MPL_AUX_ERASE_IMPL_HPP_INCLUDED\r
4 \r
5 // Copyright Aleksey Gurtovoy 2000-2004\r
6 //\r
7 // Distributed under the Boost Software License, Version 1.0. \r
8 // (See accompanying file LICENSE_1_0.txt or copy at \r
9 // http://www.boost.org/LICENSE_1_0.txt)\r
10 //\r
11 // See http://www.boost.org/libs/mpl for documentation.\r
12 \r
13 // $Id: erase_impl.hpp 49267 2008-10-11 06:19:02Z agurtovoy $\r
14 // $Date: 2008-10-11 02:19:02 -0400 (Sat, 11 Oct 2008) $\r
15 // $Revision: 49267 $\r
16 \r
17 #include <boost/mpl/clear.hpp>\r
18 #include <boost/mpl/push_front.hpp>\r
19 #include <boost/mpl/reverse_fold.hpp>\r
20 #include <boost/mpl/iterator_range.hpp>\r
21 #include <boost/mpl/next.hpp>\r
22 #include <boost/mpl/aux_/na.hpp>\r
23 \r
24 namespace boost { namespace mpl {\r
25 \r
26 // default implementation; conrete sequences might override it by \r
27 // specializing either the 'erase_impl' or the primary 'erase' template\r
28 \r
29 template< typename Tag >\r
30 struct erase_impl\r
31 {\r
32     template<\r
33           typename Sequence\r
34         , typename First\r
35         , typename Last\r
36         >\r
37     struct apply\r
38     {\r
39         typedef typename if_na< Last,typename next<First>::type >::type last_;\r
40         \r
41         // 1st half: [begin, first)\r
42         typedef iterator_range<\r
43               typename begin<Sequence>::type\r
44             , First\r
45             > first_half_;\r
46 \r
47         // 2nd half: [last, end) ... that is, [last + 1, end)\r
48         typedef iterator_range<\r
49               last_\r
50             , typename end<Sequence>::type\r
51             > second_half_;\r
52 \r
53         typedef typename reverse_fold<\r
54               second_half_\r
55             , typename clear<Sequence>::type\r
56             , push_front<_,_>\r
57             >::type half_sequence_;\r
58 \r
59         typedef typename reverse_fold<\r
60               first_half_\r
61             , half_sequence_\r
62             , push_front<_,_>\r
63             >::type type;\r
64     };\r
65 };\r
66 \r
67 }}\r
68 \r
69 #endif // BOOST_MPL_AUX_ERASE_IMPL_HPP_INCLUDED\r