2 // Copyright Aleksey Gurtovoy 2000-2004
\r
4 // Distributed under the Boost Software License, Version 1.0.
\r
5 // (See accompanying file LICENSE_1_0.txt or copy at
\r
6 // http://www.boost.org/LICENSE_1_0.txt)
\r
9 // Preprocessed version of "boost/mpl/plus.hpp" header
\r
10 // -- DO NOT modify by hand!
\r
12 namespace boost { namespace mpl {
\r
20 ( BOOST_MPL_AUX_NESTED_VALUE_WKND(int, Tag1)
\r
21 > BOOST_MPL_AUX_NESTED_VALUE_WKND(int, Tag2)
\r
24 , aux::cast2nd_impl< plus_impl< Tag1,Tag1 >,Tag1, Tag2 >
\r
25 , aux::cast1st_impl< plus_impl< Tag2,Tag2 >,Tag1, Tag2 >
\r
30 /// for Digital Mars C++/compilers with no CTPS/TTP support
\r
31 template<> struct plus_impl< na,na >
\r
33 template< typename U1, typename U2 > struct apply
\r
36 BOOST_STATIC_CONSTANT(int, value = 0);
\r
40 template< typename Tag > struct plus_impl< na,Tag >
\r
42 template< typename U1, typename U2 > struct apply
\r
45 BOOST_STATIC_CONSTANT(int, value = 0);
\r
49 template< typename Tag > struct plus_impl< Tag,na >
\r
51 template< typename U1, typename U2 > struct apply
\r
54 BOOST_STATIC_CONSTANT(int, value = 0);
\r
58 template< typename T > struct plus_tag
\r
60 typedef typename T::tag type;
\r
64 typename BOOST_MPL_AUX_NA_PARAM(N1)
\r
65 , typename BOOST_MPL_AUX_NA_PARAM(N2)
\r
66 , typename N3 = na, typename N4 = na, typename N5 = na
\r
69 : plus< plus< plus< plus< N1,N2 >, N3>, N4>, N5>
\r
74 typename N1, typename N2, typename N3, typename N4
\r
76 struct plus< N1,N2,N3,N4,na >
\r
78 : plus< plus< plus< N1,N2 >, N3>, N4>
\r
80 BOOST_MPL_AUX_LAMBDA_SUPPORT_SPEC(
\r
83 , ( N1, N2, N3, N4, na )
\r
88 typename N1, typename N2, typename N3
\r
90 struct plus< N1,N2,N3,na,na >
\r
92 : plus< plus< N1,N2 >, N3>
\r
94 BOOST_MPL_AUX_LAMBDA_SUPPORT_SPEC(
\r
97 , ( N1, N2, N3, na, na )
\r
102 typename N1, typename N2
\r
104 struct plus< N1,N2,na,na,na >
\r
106 typename plus_tag<N1>::type
\r
107 , typename plus_tag<N2>::type
\r
108 >::template apply< N1,N2 >::type
\r
110 BOOST_MPL_AUX_LAMBDA_SUPPORT_SPEC(
\r
113 , ( N1, N2, na, na, na )
\r
118 BOOST_MPL_AUX_NA_SPEC2(2, 5, plus)
\r
122 namespace boost { namespace mpl {
\r
124 struct plus_impl< integral_c_tag,integral_c_tag >
\r
126 template< typename N1, typename N2 > struct apply
\r
129 typename aux::largest_int<
\r
130 typename N1::value_type
\r
131 , typename N2::value_type
\r
133 , ( BOOST_MPL_AUX_VALUE_WKND(N1)::value
\r
134 + BOOST_MPL_AUX_VALUE_WKND(N2)::value
\r