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/times.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< times_impl< Tag1,Tag1 >,Tag1, Tag2 >
\r
25 , aux::cast1st_impl< times_impl< Tag2,Tag2 >,Tag1, Tag2 >
\r
30 /// for Digital Mars C++/compilers with no CTPS/TTP support
\r
31 template<> struct times_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 times_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 times_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 times_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 : times< times< times< times< N1,N2 >, N3>, N4>, N5>
\r
71 BOOST_MPL_AUX_LAMBDA_SUPPORT(
\r
74 , ( N1, N2, N3, N4, N5 )
\r
79 typename N1, typename N2, typename N3, typename N4
\r
81 struct times< N1,N2,N3,N4,na >
\r
83 : times< times< times< N1,N2 >, N3>, N4>
\r
85 BOOST_MPL_AUX_LAMBDA_SUPPORT_SPEC(
\r
88 , ( N1, N2, N3, N4, na )
\r
93 typename N1, typename N2, typename N3
\r
95 struct times< N1,N2,N3,na,na >
\r
97 : times< times< N1,N2 >, N3>
\r
99 BOOST_MPL_AUX_LAMBDA_SUPPORT_SPEC(
\r
102 , ( N1, N2, N3, na, na )
\r
107 typename N1, typename N2
\r
109 struct times< N1,N2,na,na,na >
\r
111 typename times_tag<N1>::type
\r
112 , typename times_tag<N2>::type
\r
113 >::template apply< N1,N2 >::type
\r
115 BOOST_MPL_AUX_LAMBDA_SUPPORT_SPEC(
\r
118 , ( N1, N2, na, na, na )
\r
123 BOOST_MPL_AUX_NA_SPEC2(2, 5, times)
\r
127 namespace boost { namespace mpl {
\r
129 struct times_impl< integral_c_tag,integral_c_tag >
\r
131 template< typename N1, typename N2 > struct apply
\r
134 typename aux::largest_int<
\r
135 typename N1::value_type
\r
136 , typename N2::value_type
\r
138 , ( BOOST_MPL_AUX_VALUE_WKND(N1)::value
\r
139 * BOOST_MPL_AUX_VALUE_WKND(N2)::value
\r