2 // Copyright Aleksey Gurtovoy 2000-2004
\r
3 // Copyright Jaap Suter 2003
\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
10 // Preprocessed version of "boost/mpl/bitand.hpp" header
\r
11 // -- DO NOT modify by hand!
\r
13 namespace boost { namespace mpl {
\r
21 ( BOOST_MPL_AUX_NESTED_VALUE_WKND(int, Tag1)
\r
22 > BOOST_MPL_AUX_NESTED_VALUE_WKND(int, Tag2)
\r
25 , aux::cast2nd_impl< bitand_impl< Tag1,Tag1 >,Tag1, Tag2 >
\r
26 , aux::cast1st_impl< bitand_impl< Tag2,Tag2 >,Tag1, Tag2 >
\r
31 /// for Digital Mars C++/compilers with no CTPS/TTP support
\r
32 template<> struct bitand_impl< na,na >
\r
34 template< typename U1, typename U2 > struct apply
\r
37 BOOST_STATIC_CONSTANT(int, value = 0);
\r
41 template<> struct bitand_impl< na,integral_c_tag >
\r
43 template< typename U1, typename U2 > struct apply
\r
46 BOOST_STATIC_CONSTANT(int, value = 0);
\r
50 template<> struct bitand_impl< integral_c_tag,na >
\r
52 template< typename U1, typename U2 > struct apply
\r
55 BOOST_STATIC_CONSTANT(int, value = 0);
\r
59 template< typename T > struct bitand_tag
\r
61 typedef typename T::tag type;
\r
64 /// forward declaration
\r
67 typename BOOST_MPL_AUX_NA_PARAM(N1)
\r
68 , typename BOOST_MPL_AUX_NA_PARAM(N2)
\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
90 BOOST_MPL_AUX_LAMBDA_SUPPORT(
\r
93 , ( N1, N2, N3, N4, N5 )
\r
103 typename bitand_tag<N1>::type
\r
104 , typename bitand_tag<N2>::type
\r
105 >::template apply< N1,N2 >::type
\r
107 BOOST_MPL_AUX_LAMBDA_SUPPORT(2, bitand_2, (N1, N2))
\r
111 BOOST_MPL_AUX_NA_SPEC2(2, 5, bitand_)
\r
115 namespace boost { namespace mpl {
\r
117 struct bitand_impl< integral_c_tag,integral_c_tag >
\r
119 template< typename N1, typename N2 > struct apply
\r
122 typename aux::largest_int<
\r
123 typename N1::value_type
\r
124 , typename N2::value_type
\r
126 , ( BOOST_MPL_AUX_VALUE_WKND(N1)::value
\r
127 & BOOST_MPL_AUX_VALUE_WKND(N2)::value
\r