CNL  2.0.2 (development)
Compositional Numeric Library
is_composite.h
1 
2 // Copyright John McFarlane 2018.
3 // Distributed under the Boost Software License, Version 1.0.
4 // (See accompanying file ../LICENSE_1_0.txt or copy at
5 // http://www.boost.org/LICENSE_1_0.txt)
6 
7 #if !defined(CNL_IMPL_NUM_TRAITS_IS_COMPOSITE_H)
8 #define CNL_IMPL_NUM_TRAITS_IS_COMPOSITE_H
9 
10 #include <type_traits>
11 
12 namespace cnl {
13  template<class T>
14  struct is_composite : std::false_type {
15  static_assert(!std::is_const<T>::value, "T is const");
16  static_assert(!std::is_volatile<T>::value, "T is volatile");
17  };
18 
19  template<class T>
20  constexpr auto is_composite_v = is_composite<T>::value;
21 
22  namespace _impl {
24  // cnl::_impl::are_composite
25 
26  template<class... Args>
27  struct are_composite;
28 
29  template<>
30  struct are_composite<> : std::false_type {
31  };
32 
33  template<class ArgHead, class... ArgTail>
34  struct are_composite<ArgHead, ArgTail...>
36  bool, is_composite<typename std::decay<ArgHead>::type>::value
37  || are_composite<ArgTail...>::value> {
38  };
39  }
40 }
41 
42 #endif // CNL_IMPL_NUM_TRAITS_IS_COMPOSITE_H
std::false_type
std::is_volatile
cnl
compositional numeric library
Definition: abort.h:15
std::is_const