CNL  2.0.2 (development)
Compositional Numeric Library
definition.h
1 
2 // Copyright John McFarlane 2019.
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_WIDE_TAG_DEFINITION_H)
8 #define CNL_IMPL_WIDE_TAG_DEFINITION_H
9 
10 #include "../custom_operator/homogeneous_operator_tag_base.h"
11 #include "../duplex_integer/narrowest_integer.h"
12 #include "../num_traits/digits.h"
13 #include "../num_traits/max_digits.h"
14 #include "../num_traits/set_digits.h"
15 #include "declaration.h"
16 
17 #include <algorithm>
18 #include <type_traits>
19 
21 namespace cnl {
22  namespace _impl {
23  template<int Digits, typename Narrowest, bool NeedsDuplex>
24  struct wide_tag_rep;
25 
26  // When number can be represented in a single integer
27  template<int Digits, typename Narrowest>
28  struct wide_tag_rep<Digits, Narrowest, false>
29  : std::type_identity<set_digits_t<Narrowest, std::max(cnl::digits_v<Narrowest>, Digits)>> {
30  };
31 
32  // when number must be represented using multiple integers
33  template<int Digits, typename Narrowest>
34  struct wide_tag_rep<Digits, Narrowest, true>
35  : std::type_identity<narrowest_integer_t<Digits, Narrowest>> {
36  };
37 
38  template<int Digits, typename Narrowest, bool NeedsDuplex>
39  using wide_tag_rep_t = typename wide_tag_rep<Digits, Narrowest, NeedsDuplex>::type;
40  }
41 
42  template<int Digits, typename Narrowest>
43  struct wide_tag : _impl::homogeneous_operator_tag_base {
44  using rep = _impl::wide_tag_rep_t<Digits, Narrowest, (Digits > _impl::max_digits<Narrowest>)>;
45  };
46 }
47 
48 #endif // CNL_IMPL_WIDE_TAG_DEFINITION_H
cnl
compositional numeric library
Definition: abort.h:15