7 #if !defined(CNL_IMPL_ELASTIC_INTEGER_MAKE_ELASTIC_INTEGER_H)
8 #define CNL_IMPL_ELASTIC_INTEGER_MAKE_ELASTIC_INTEGER_H
10 #include "../../constant.h"
11 #include "../numbers/adopt_signedness.h"
12 #include "definition.h"
15 #include <type_traits>
19 template<CNL_IMPL_CONSTANT_VALUE_TYPE Value>
20 [[nodiscard]] constexpr
auto make_elastic_integer(constant<Value>)
21 -> elastic_integer<digits_v<constant<Value>>>
23 return elastic_integer<digits_v<constant<Value>>>{Value};
28 using narrowest = adopt_signedness_t<int, Rep>;
30 template<
class Narrowest,
class Integral>
31 struct make_narrowest {
32 using type = Narrowest;
35 template<
class Integral>
36 struct make_narrowest<void, Integral> {
37 using type = narrowest<Integral>;
40 template<
class Narrowest,
class Integral>
41 using make_narrowest_t =
typename make_narrowest<Narrowest, Integral>::type;
43 template<
class Narrowest,
class Integral>
45 elastic_integer<digits_v<Integral>, make_narrowest_t<Narrowest, Integral>>;
48 template<
class Narrowest =
void,
class Integral>
49 requires(!_impl::is_constant<Integral>::value)
50 [[nodiscard]] constexpr
auto make_elastic_integer(Integral
const& value)
52 return _impl::make_type<Narrowest, Integral>{value};
56 #endif // CNL_IMPL_ELASTIC_INTEGER_MAKE_ELASTIC_INTEGER_H