CNL  2.0.2 (development)
Compositional Numeric Library
from_value.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_FROM_VALUE_H)
8 #define CNL_IMPL_ELASTIC_INTEGER_FROM_VALUE_H
9 
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"
16 
18 namespace cnl {
19  template<int Digits, class Narrowest, class Value>
20  struct from_value<elastic_integer<Digits, Narrowest>, Value>
21  : _impl::from_value_simple<
22  elastic_integer<
23  digits_v<Value>,
24  _impl::set_width_t<Value, _impl::width<Narrowest>>>,
25  Value> {
26  };
27 
28  template<int Digits, typename Narrowest, int ValueDigits, typename ValueNarrowest>
29  struct from_value<
30  elastic_integer<Digits, Narrowest>, elastic_integer<ValueDigits, ValueNarrowest>>
31  : _impl::from_value_simple<
32  elastic_integer<ValueDigits, Narrowest>,
33  elastic_integer<ValueDigits, Narrowest>> {
34  };
35 
36  template<int Digits, class Narrowest, CNL_IMPL_CONSTANT_VALUE_TYPE Value>
37  struct from_value<elastic_integer<Digits, Narrowest>, constant<Value>>
38  : _impl::from_value_simple<
39  elastic_integer<digits_v<constant<Value>>, int>, constant<Value>> {
40  };
41 }
42 
43 #endif // CNL_IMPL_ELASTIC_INTEGER_FROM_VALUE_H
cnl
compositional numeric library
Definition: abort.h:15
cnl::elastic_integer
_impl::wrapper< typename elastic_tag< Digits, Narrowest >::rep, elastic_tag< Digits, Narrowest > > elastic_integer
An integer type with auto-widening operators.
Definition: definition.h:39