blob: cd8cc5caabae7cdd3a928b1fc6238c57536e4855 [file] [log] [blame]
Jeff Thompsona28eed82013-08-22 16:21:10 -07001
2// Copyright Aleksey Gurtovoy 2000-2004
3// Copyright Jaap Suter 2003
4//
5// Distributed under the Boost Software License, Version 1.0.
6// (See accompanying file LICENSE_1_0.txt or copy at
7// http://www.boost.org/LICENSE_1_0.txt)
8//
9
10// Preprocessed version of "ndnboost/mpl/bitand.hpp" header
11// -- DO NOT modify by hand!
12
13namespace ndnboost { namespace mpl {
14
15template<
16 typename Tag1
17 , typename Tag2
18 >
19struct bitand_impl
20 : if_c<
Jeff Thompson3d613fd2013-10-15 15:39:04 -070021 ( NDNBOOST_MPL_AUX_NESTED_VALUE_WKND(int, Tag1)
22 > NDNBOOST_MPL_AUX_NESTED_VALUE_WKND(int, Tag2)
Jeff Thompsona28eed82013-08-22 16:21:10 -070023 )
24
25 , aux::cast2nd_impl< bitand_impl< Tag1,Tag1 >,Tag1, Tag2 >
26 , aux::cast1st_impl< bitand_impl< Tag2,Tag2 >,Tag1, Tag2 >
27 >::type
28{
29};
30
31/// for Digital Mars C++/compilers with no CTPS/TTP support
32template<> struct bitand_impl< na,na >
33{
34 template< typename U1, typename U2 > struct apply
35 {
36 typedef apply type;
Jeff Thompson3d613fd2013-10-15 15:39:04 -070037 NDNBOOST_STATIC_CONSTANT(int, value = 0);
Jeff Thompsona28eed82013-08-22 16:21:10 -070038 };
39};
40
41template< typename Tag > struct bitand_impl< na,Tag >
42{
43 template< typename U1, typename U2 > struct apply
44 {
45 typedef apply type;
Jeff Thompson3d613fd2013-10-15 15:39:04 -070046 NDNBOOST_STATIC_CONSTANT(int, value = 0);
Jeff Thompsona28eed82013-08-22 16:21:10 -070047 };
48};
49
50template< typename Tag > struct bitand_impl< Tag,na >
51{
52 template< typename U1, typename U2 > struct apply
53 {
54 typedef apply type;
Jeff Thompson3d613fd2013-10-15 15:39:04 -070055 NDNBOOST_STATIC_CONSTANT(int, value = 0);
Jeff Thompsona28eed82013-08-22 16:21:10 -070056 };
57};
58
59template< typename T > struct bitand_tag
60{
61 typedef typename T::tag type;
62};
63
64template<
Jeff Thompson3d613fd2013-10-15 15:39:04 -070065 typename NDNBOOST_MPL_AUX_NA_PARAM(N1)
66 , typename NDNBOOST_MPL_AUX_NA_PARAM(N2)
Jeff Thompsona28eed82013-08-22 16:21:10 -070067 , typename N3 = na, typename N4 = na, typename N5 = na
68 >
69struct bitand_
70 : bitand_< bitand_< bitand_< bitand_< N1,N2 >, N3>, N4>, N5>
71{
Jeff Thompson3d613fd2013-10-15 15:39:04 -070072 NDNBOOST_MPL_AUX_LAMBDA_SUPPORT(
Jeff Thompsona28eed82013-08-22 16:21:10 -070073 5
74 , bitand_
75 , ( N1, N2, N3, N4, N5 )
76 )
77};
78
79template<
80 typename N1, typename N2, typename N3, typename N4
81 >
82struct bitand_< N1,N2,N3,N4,na >
83
84 : bitand_< bitand_< bitand_< N1,N2 >, N3>, N4>
85{
Jeff Thompson3d613fd2013-10-15 15:39:04 -070086 NDNBOOST_MPL_AUX_LAMBDA_SUPPORT_SPEC(
Jeff Thompsona28eed82013-08-22 16:21:10 -070087 5
88 , bitand_
89 , ( N1, N2, N3, N4, na )
90 )
91};
92
93template<
94 typename N1, typename N2, typename N3
95 >
96struct bitand_< N1,N2,N3,na,na >
97
98 : bitand_< bitand_< N1,N2 >, N3>
99{
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700100 NDNBOOST_MPL_AUX_LAMBDA_SUPPORT_SPEC(
Jeff Thompsona28eed82013-08-22 16:21:10 -0700101 5
102 , bitand_
103 , ( N1, N2, N3, na, na )
104 )
105};
106
107template<
108 typename N1, typename N2
109 >
110struct bitand_< N1,N2,na,na,na >
111 : bitand_impl<
112 typename bitand_tag<N1>::type
113 , typename bitand_tag<N2>::type
114 >::template apply< N1,N2 >::type
115{
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700116 NDNBOOST_MPL_AUX_LAMBDA_SUPPORT_SPEC(
Jeff Thompsona28eed82013-08-22 16:21:10 -0700117 5
118 , bitand_
119 , ( N1, N2, na, na, na )
120 )
121
122};
123
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700124NDNBOOST_MPL_AUX_NA_SPEC2(2, 5, bitand_)
Jeff Thompsona28eed82013-08-22 16:21:10 -0700125
126}}
127
128namespace ndnboost { namespace mpl {
129template<>
130struct bitand_impl< integral_c_tag,integral_c_tag >
131{
132 template< typename N1, typename N2 > struct apply
133
134 : integral_c<
135 typename aux::largest_int<
136 typename N1::value_type
137 , typename N2::value_type
138 >::type
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700139 , ( NDNBOOST_MPL_AUX_VALUE_WKND(N1)::value
140 & NDNBOOST_MPL_AUX_VALUE_WKND(N2)::value
Jeff Thompsona28eed82013-08-22 16:21:10 -0700141 )
142 >
143 {
144 };
145};
146
147}}