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/modulus.hpp" header
\r
10 // -- DO NOT modify by hand!
\r
12 namespace boost { namespace mpl {
\r
18 , BOOST_MPL_AUX_NTTP_DECL(int, tag1_) = BOOST_MPL_AUX_MSVC_VALUE_WKND(Tag1)::value
\r
19 , BOOST_MPL_AUX_NTTP_DECL(int, tag2_) = BOOST_MPL_AUX_MSVC_VALUE_WKND(Tag2)::value
\r
24 , aux::cast2nd_impl< modulus_impl< Tag1,Tag1 >,Tag1, Tag2 >
\r
25 , aux::cast1st_impl< modulus_impl< Tag2,Tag2 >,Tag1, Tag2 >
\r
30 /// for Digital Mars C++/compilers with no CTPS/TTP support
\r
31 template<> struct modulus_impl< na,na >
\r
33 template< typename U1, typename U2 > struct apply
\r
36 BOOST_STATIC_CONSTANT(int, value = 0);
\r
40 template<> struct modulus_impl< na,integral_c_tag >
\r
42 template< typename U1, typename U2 > struct apply
\r
45 BOOST_STATIC_CONSTANT(int, value = 0);
\r
49 template<> struct modulus_impl< integral_c_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 modulus_tag
\r
64 typename BOOST_MPL_AUX_NA_PARAM(N1)
\r
65 , typename BOOST_MPL_AUX_NA_PARAM(N2)
\r
68 : aux::msvc_eti_base< typename apply_wrap2<
\r
70 typename modulus_tag<N1>::type
\r
71 , typename modulus_tag<N2>::type
\r
78 BOOST_MPL_AUX_LAMBDA_SUPPORT(2, modulus, (N1, N2))
\r
82 BOOST_MPL_AUX_NA_SPEC2(2, 2, modulus)
\r
86 namespace boost { namespace mpl {
\r
89 template< typename T, T n1, T n2 >
\r
92 BOOST_STATIC_CONSTANT(T, value = (n1 % n2));
\r
93 typedef integral_c< T,value > type;
\r
99 struct modulus_impl< integral_c_tag,integral_c_tag >
\r
101 template< typename N1, typename N2 > struct apply
\r
102 : aux::modulus_wknd<
\r
103 typename aux::largest_int<
\r
104 typename N1::value_type
\r
105 , typename N2::value_type
\r