CNL  2.0.2 (development)
Compositional Numeric Library
declaration.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_DECLARATION_H)
8 #define CNL_IMPL_DUPLEX_INTEGER_DECLARATION_H
9 
11 namespace cnl {
12  namespace _impl {
13  template<typename Upper, typename Lower>
14  class duplex_integer;
15 
16  template<typename T>
17  struct duplex_integer_upper : std::type_identity<T> {
18  };
19 
20  template<typename Upper, typename Lower>
21  struct duplex_integer_upper<duplex_integer<Upper, Lower>>
22  : duplex_integer_upper<Upper> {
23  };
24 
25  template<typename T>
26  using duplex_integer_upper_t = typename duplex_integer_upper<T>::type;
27  }
28 }
29 
30 #endif // CNL_IMPL_DUPLEX_INTEGER_DECLARATION_H
cnl
compositional numeric library
Definition: abort.h:15