Attempt to represent the S^2->S^3 header reorganisation as a series of "hg rename" operations
2 #ifndef BOOST_MPL_NEGATE_HPP_INCLUDED
3 #define BOOST_MPL_NEGATE_HPP_INCLUDED
5 // Copyright Aleksey Gurtovoy 2000-2004
7 // Distributed under the Boost Software License, Version 1.0.
8 // (See accompanying file LICENSE_1_0.txt or copy at
9 // http://www.boost.org/LICENSE_1_0.txt)
11 // See http://www.boost.org/libs/mpl for documentation.
13 // $Source: /cvsroot/boost/boost/boost/mpl/negate.hpp,v $
14 // $Date: 2004/09/07 09:06:08 $
17 #include <boost/mpl/integral_c.hpp>
18 #include <boost/mpl/aux_/msvc_eti_base.hpp>
19 #include <boost/mpl/aux_/na_spec.hpp>
20 #include <boost/mpl/aux_/lambda_support.hpp>
21 #include <boost/mpl/aux_/config/eti.hpp>
22 #include <boost/mpl/aux_/config/integral.hpp>
23 #include <boost/mpl/aux_/config/static_constant.hpp>
25 namespace boost { namespace mpl {
27 template< typename Tag > struct negate_impl;
29 template< typename T > struct negate_tag
31 typedef typename T::tag type;
35 typename BOOST_MPL_AUX_NA_PARAM(N)
38 #if !defined(BOOST_MPL_CFG_MSVC_ETI_BUG)
40 typename negate_tag<N>::type
41 >::template apply<N>::type
43 : aux::msvc_eti_base< typename apply_wrap1<
44 negate_impl< typename negate_tag<N>::type >
49 BOOST_MPL_AUX_LAMBDA_SUPPORT(1, negate, (N))
52 BOOST_MPL_AUX_NA_SPEC(1, negate)
55 #if defined(BOOST_MPL_CFG_NO_NESTED_VALUE_ARITHMETIC)
57 template< typename T, T n > struct negate_wknd
59 BOOST_STATIC_CONSTANT(T, value = -n);
60 typedef integral_c<T,value> type;
66 struct negate_impl<integral_c_tag>
68 #if defined(BOOST_MPL_CFG_NO_NESTED_VALUE_ARITHMETIC)
69 template< typename N > struct apply
70 : aux::negate_wknd< typename N::value_type, N::value >
72 template< typename N > struct apply
73 : integral_c< typename N::value_type, (-N::value) >
81 #endif // BOOST_MPL_NEGATE_HPP_INCLUDED