blob: e4e208e05397ba812c5fc4bd249470de5e669394 [file] [log] [blame]
Jeff Thompsonf7d49942013-08-01 16:47:40 -07001
2// (C) Copyright Steve Cleary, Beman Dawes, Howard Hinnant & John Maddock 2000.
3// Use, modification and distribution are subject to the Boost Software License,
4// Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
5// http://www.boost.org/LICENSE_1_0.txt).
6//
7// See http://www.boost.org/libs/type_traits for most recent version including documentation.
8
Jeff Thompson3d613fd2013-10-15 15:39:04 -07009#ifndef NDNBOOST_TT_IS_SCALAR_HPP_INCLUDED
10#define NDNBOOST_TT_IS_SCALAR_HPP_INCLUDED
Jeff Thompsonf7d49942013-08-01 16:47:40 -070011
Jeff Thompson2277ce52013-08-01 17:34:11 -070012#include <ndnboost/type_traits/is_arithmetic.hpp>
13#include <ndnboost/type_traits/is_enum.hpp>
14#include <ndnboost/type_traits/is_pointer.hpp>
15#include <ndnboost/type_traits/is_member_pointer.hpp>
16#include <ndnboost/type_traits/detail/ice_or.hpp>
17#include <ndnboost/config.hpp>
Jeff Thompsonf7d49942013-08-01 16:47:40 -070018
19// should be the last #include
Jeff Thompson2277ce52013-08-01 17:34:11 -070020#include <ndnboost/type_traits/detail/bool_trait_def.hpp>
Jeff Thompsonf7d49942013-08-01 16:47:40 -070021
22namespace ndnboost {
23
24namespace detail {
25
26template <typename T>
27struct is_scalar_impl
28{
Jeff Thompson3d613fd2013-10-15 15:39:04 -070029 NDNBOOST_STATIC_CONSTANT(bool, value =
Jeff Thompsonf7d49942013-08-01 16:47:40 -070030 (::ndnboost::type_traits::ice_or<
31 ::ndnboost::is_arithmetic<T>::value,
32 ::ndnboost::is_enum<T>::value,
33 ::ndnboost::is_pointer<T>::value,
34 ::ndnboost::is_member_pointer<T>::value
35 >::value));
36};
37
38// these specializations are only really needed for compilers
39// without partial specialization support:
Jeff Thompson3d613fd2013-10-15 15:39:04 -070040template <> struct is_scalar_impl<void>{ NDNBOOST_STATIC_CONSTANT(bool, value = false ); };
41#ifndef NDNBOOST_NO_CV_VOID_SPECIALIZATIONS
42template <> struct is_scalar_impl<void const>{ NDNBOOST_STATIC_CONSTANT(bool, value = false ); };
43template <> struct is_scalar_impl<void volatile>{ NDNBOOST_STATIC_CONSTANT(bool, value = false ); };
44template <> struct is_scalar_impl<void const volatile>{ NDNBOOST_STATIC_CONSTANT(bool, value = false ); };
Jeff Thompsonf7d49942013-08-01 16:47:40 -070045#endif
46
47} // namespace detail
48
Jeff Thompson3d613fd2013-10-15 15:39:04 -070049NDNBOOST_TT_AUX_BOOL_TRAIT_DEF1(is_scalar,T,::ndnboost::detail::is_scalar_impl<T>::value)
Jeff Thompsonf7d49942013-08-01 16:47:40 -070050
51} // namespace ndnboost
52
Jeff Thompson2277ce52013-08-01 17:34:11 -070053#include <ndnboost/type_traits/detail/bool_trait_undef.hpp>
Jeff Thompsonf7d49942013-08-01 16:47:40 -070054
Jeff Thompson3d613fd2013-10-15 15:39:04 -070055#endif // NDNBOOST_TT_IS_SCALAR_HPP_INCLUDED