CNL  2.0.2 (development)
Compositional Numeric Library
make_elastic_integer.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_ELASTIC_INTEGER_MAKE_ELASTIC_INTEGER_H)
8 #define CNL_IMPL_ELASTIC_INTEGER_MAKE_ELASTIC_INTEGER_H
9 
10 #include "../../constant.h"
11 #include "../numbers/adopt_signedness.h"
12 #include "definition.h"
13 #include "digits.h"
14 
15 #include <type_traits>
16 
18 namespace cnl {
19  template<CNL_IMPL_CONSTANT_VALUE_TYPE Value>
20  [[nodiscard]] constexpr auto make_elastic_integer(constant<Value>)
21  -> elastic_integer<digits_v<constant<Value>>>
22  {
23  return elastic_integer<digits_v<constant<Value>>>{Value};
24  }
25 
26  namespace _impl {
27  template<integer Rep>
28  using narrowest = adopt_signedness_t<int, Rep>;
29 
30  template<class Narrowest, class Integral>
31  struct make_narrowest {
32  using type = Narrowest;
33  };
34 
35  template<class Integral>
36  struct make_narrowest<void, Integral> {
37  using type = narrowest<Integral>;
38  };
39 
40  template<class Narrowest, class Integral>
41  using make_narrowest_t = typename make_narrowest<Narrowest, Integral>::type;
42 
43  template<class Narrowest, class Integral>
44  using make_type =
45  elastic_integer<digits_v<Integral>, make_narrowest_t<Narrowest, Integral>>;
46  }
47 
48  template<class Narrowest = void, class Integral>
49  requires(!_impl::is_constant<Integral>::value)
50  [[nodiscard]] constexpr auto make_elastic_integer(Integral const& value)
51  {
52  return _impl::make_type<Narrowest, Integral>{value};
53  }
54 }
55 
56 #endif // CNL_IMPL_ELASTIC_INTEGER_MAKE_ELASTIC_INTEGER_H
cnl
compositional numeric library
Definition: abort.h:15