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

Private GIT Repository
fb00e1d2bac81f00bf136e29c4ee9689b086c8ef
[canny.git] / stc / exp / ml_stc_linux_make_v1.0 / include / boost / mpl / aux_ / preprocessed / msvc60 / bitand.hpp
1 \r
2 // Copyright Aleksey Gurtovoy 2000-2004\r
3 // Copyright Jaap Suter 2003\r
4 //\r
5 // Distributed under the Boost Software License, Version 1.0. \r
6 // (See accompanying file LICENSE_1_0.txt or copy at \r
7 // http://www.boost.org/LICENSE_1_0.txt)\r
8 //\r
9 \r
10 // Preprocessed version of "boost/mpl/bitand.hpp" header\r
11 // -- DO NOT modify by hand!\r
12 \r
13 namespace boost { namespace mpl {\r
14 \r
15 template<\r
16       typename Tag1\r
17     , typename Tag2\r
18 \r
19     , BOOST_MPL_AUX_NTTP_DECL(int, tag1_)  = BOOST_MPL_AUX_MSVC_VALUE_WKND(Tag1)::value\r
20     , BOOST_MPL_AUX_NTTP_DECL(int, tag2_)  = BOOST_MPL_AUX_MSVC_VALUE_WKND(Tag2)::value\r
21     >\r
22 struct bitand_impl\r
23     : if_c<\r
24           ( tag1_ > tag2_ )\r
25         , aux::cast2nd_impl< bitand_impl< Tag1,Tag1 >,Tag1, Tag2 >\r
26         , aux::cast1st_impl< bitand_impl< Tag2,Tag2 >,Tag1, Tag2 >\r
27         >::type\r
28 {\r
29 };\r
30 \r
31 /// for Digital Mars C++/compilers with no CTPS/TTP support\r
32 template<> struct bitand_impl< na,na >\r
33 {\r
34     template< typename U1, typename U2 > struct apply\r
35     {\r
36         typedef apply type;\r
37         BOOST_STATIC_CONSTANT(int, value  = 0);\r
38     };\r
39 };\r
40 \r
41 template<> struct bitand_impl< na,integral_c_tag >\r
42 {\r
43     template< typename U1, typename U2 > struct apply\r
44     {\r
45         typedef apply type;\r
46         BOOST_STATIC_CONSTANT(int, value  = 0);\r
47     };\r
48 };\r
49 \r
50 template<> struct bitand_impl< integral_c_tag,na >\r
51 {\r
52     template< typename U1, typename U2 > struct apply\r
53     {\r
54         typedef apply type;\r
55         BOOST_STATIC_CONSTANT(int, value  = 0);\r
56     };\r
57 };\r
58 \r
59 template< typename T > struct bitand_tag\r
60 {\r
61     typedef typename T::tag type;\r
62 };\r
63 \r
64 /// forward declaration\r
65 \r
66 template<\r
67       typename BOOST_MPL_AUX_NA_PARAM(N1)\r
68     , typename BOOST_MPL_AUX_NA_PARAM(N2)\r
69     >\r
70 struct bitand_2;\r
71 \r
72 template<\r
73       typename BOOST_MPL_AUX_NA_PARAM(N1)\r
74     , typename BOOST_MPL_AUX_NA_PARAM(N2)\r
75     , typename N3 = na, typename N4 = na, typename N5 = na\r
76     >\r
77 struct bitand_\r
78 \r
79     : if_<\r
80 \r
81           is_na<N3>\r
82         , bitand_2< N1,N2 >\r
83         , bitand_<\r
84               bitand_2< N1,N2 >\r
85             , N3, N4, N5\r
86             >\r
87         >::type\r
88 \r
89 {\r
90     BOOST_MPL_AUX_LAMBDA_SUPPORT(\r
91           5\r
92         , bitand_\r
93         , ( N1, N2, N3, N4, N5 )\r
94         )\r
95 };\r
96 \r
97 template<\r
98       typename N1\r
99     , typename N2\r
100     >\r
101 struct bitand_2\r
102     : aux::msvc_eti_base< typename apply_wrap2<\r
103           bitand_impl<\r
104               typename bitand_tag<N1>::type\r
105             , typename bitand_tag<N2>::type\r
106             >\r
107         , N1\r
108         , N2\r
109         >::type >::type\r
110 \r
111 {\r
112     BOOST_MPL_AUX_LAMBDA_SUPPORT(2, bitand_2, (N1, N2))\r
113 \r
114 };\r
115 \r
116 BOOST_MPL_AUX_NA_SPEC2(2, 5, bitand_)\r
117 \r
118 }}\r
119 \r
120 namespace boost { namespace mpl {\r
121 \r
122 namespace aux {\r
123 template< typename T, T n1, T n2 >\r
124 struct bitand_wknd\r
125 {\r
126     BOOST_STATIC_CONSTANT(T, value  = (n1 & n2));\r
127     typedef integral_c< T,value > type;\r
128 };\r
129 \r
130 }\r
131 \r
132 template<>\r
133 struct bitand_impl< integral_c_tag,integral_c_tag >\r
134 {\r
135     template< typename N1, typename N2 > struct apply\r
136         : aux::bitand_wknd<\r
137               typename aux::largest_int<\r
138                   typename N1::value_type\r
139                 , typename N2::value_type\r
140                 >::type\r
141             , N1::value\r
142             , N2::value\r
143             >::type\r
144 \r
145     {\r
146     };\r
147 };\r
148 \r
149 }}\r