blob: e8b9acc7c32331623f7db2fd925c658a57141bf0 [file] [log] [blame]
Jeff Thompsona28eed82013-08-22 16:21:10 -07001
Jeff Thompson3d613fd2013-10-15 15:39:04 -07002#ifndef NDNBOOST_MPL_NEGATE_HPP_INCLUDED
3#define NDNBOOST_MPL_NEGATE_HPP_INCLUDED
Jeff Thompsona28eed82013-08-22 16:21:10 -07004
5// Copyright Aleksey Gurtovoy 2000-2004
6//
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)
10//
11// See http://www.boost.org/libs/mpl for documentation.
12
13// $Id: negate.hpp 49267 2008-10-11 06:19:02Z agurtovoy $
14// $Date: 2008-10-10 23:19:02 -0700 (Fri, 10 Oct 2008) $
15// $Revision: 49267 $
16
17#include <ndnboost/mpl/integral_c.hpp>
18#include <ndnboost/mpl/aux_/msvc_eti_base.hpp>
19#include <ndnboost/mpl/aux_/na_spec.hpp>
20#include <ndnboost/mpl/aux_/lambda_support.hpp>
21#include <ndnboost/mpl/aux_/config/eti.hpp>
22#include <ndnboost/mpl/aux_/config/integral.hpp>
23#include <ndnboost/mpl/aux_/config/static_constant.hpp>
24
25namespace ndnboost { namespace mpl {
26
27template< typename Tag > struct negate_impl;
28
29template< typename T > struct negate_tag
30{
31 typedef typename T::tag type;
32};
33
34template<
Jeff Thompson3d613fd2013-10-15 15:39:04 -070035 typename NDNBOOST_MPL_AUX_NA_PARAM(N)
Jeff Thompsona28eed82013-08-22 16:21:10 -070036 >
37struct negate
Jeff Thompson3d613fd2013-10-15 15:39:04 -070038#if !defined(NDNBOOST_MPL_CFG_MSVC_ETI_BUG)
Jeff Thompsona28eed82013-08-22 16:21:10 -070039 : negate_impl<
40 typename negate_tag<N>::type
41 >::template apply<N>::type
42#else
43 : aux::msvc_eti_base< typename apply_wrap1<
44 negate_impl< typename negate_tag<N>::type >
45 , N
46 >::type >::type
47#endif
48{
Jeff Thompson3d613fd2013-10-15 15:39:04 -070049 NDNBOOST_MPL_AUX_LAMBDA_SUPPORT(1, negate, (N))
Jeff Thompsona28eed82013-08-22 16:21:10 -070050};
51
Jeff Thompson3d613fd2013-10-15 15:39:04 -070052NDNBOOST_MPL_AUX_NA_SPEC(1, negate)
Jeff Thompsona28eed82013-08-22 16:21:10 -070053
54
Jeff Thompson3d613fd2013-10-15 15:39:04 -070055#if defined(NDNBOOST_MPL_CFG_NO_NESTED_VALUE_ARITHMETIC)
Jeff Thompsona28eed82013-08-22 16:21:10 -070056namespace aux {
57template< typename T, T n > struct negate_wknd
58{
Jeff Thompson3d613fd2013-10-15 15:39:04 -070059 NDNBOOST_STATIC_CONSTANT(T, value = -n);
Jeff Thompsona28eed82013-08-22 16:21:10 -070060 typedef integral_c<T,value> type;
61};
62}
63#endif
64
65template<>
66struct negate_impl<integral_c_tag>
67{
Jeff Thompson3d613fd2013-10-15 15:39:04 -070068#if defined(NDNBOOST_MPL_CFG_NO_NESTED_VALUE_ARITHMETIC)
Jeff Thompsona28eed82013-08-22 16:21:10 -070069 template< typename N > struct apply
70 : aux::negate_wknd< typename N::value_type, N::value >
71#else
72 template< typename N > struct apply
73 : integral_c< typename N::value_type, (-N::value) >
74#endif
75 {
76 };
77};
78
79}}
80
Jeff Thompson3d613fd2013-10-15 15:39:04 -070081#endif // NDNBOOST_MPL_NEGATE_HPP_INCLUDED