7 #if !defined(CNL_IMPL_ELASTIC_INTEGER_FROM_VALUE_H)
8 #define CNL_IMPL_ELASTIC_INTEGER_FROM_VALUE_H
10 #include "../../constant.h"
11 #include "../num_traits/digits.h"
12 #include "../num_traits/from_value.h"
13 #include "../num_traits/set_width.h"
14 #include "../num_traits/width.h"
15 #include "definition.h"
19 template<
int Digits,
class Narrowest,
class Value>
21 : _impl::from_value_simple<
24 _impl::set_width_t<Value, _impl::width<Narrowest>>>,
28 template<
int Digits,
typename Narrowest,
int ValueDigits,
typename ValueNarrowest>
31 : _impl::from_value_simple<
32 elastic_integer<ValueDigits, Narrowest>,
33 elastic_integer<ValueDigits, Narrowest>> {
36 template<
int Digits,
class Narrowest, CNL_IMPL_CONSTANT_VALUE_TYPE Value>
38 : _impl::from_value_simple<
39 elastic_integer<digits_v<constant<Value>>, int>, constant<Value>> {
43 #endif // CNL_IMPL_ELASTIC_INTEGER_FROM_VALUE_H