CNL  2.0.2 (development)
Compositional Numeric Library
is_duplex_integer.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_DUPLEX_INTEGER_IS_DUPLEX_INTEGER_H)
8 #define CNL_IMPL_DUPLEX_INTEGER_IS_DUPLEX_INTEGER_H
9 
10 #include "declaration.h"
11 
12 #include <type_traits>
13 
15 namespace cnl {
16  namespace _impl {
17  template<typename T>
18  struct is_duplex_integer : std::false_type {
19  };
20 
21  template<typename Upper, typename Lower>
22  struct is_duplex_integer<duplex_integer<Upper, Lower>> : std::true_type {
23  };
24 
25  template<typename T>
26  inline constexpr auto is_duplex_integer_v = is_duplex_integer<T>::value;
27 
28  template<typename T>
29  concept any_duplex_integer = is_duplex_integer_v<T>;
30  }
31 }
32 
33 #endif // CNL_IMPL_DUPLEX_INTEGER_IS_DUPLEX_INTEGER_H
std::false_type
cnl
compositional numeric library
Definition: abort.h:15