CNL  2.0.2 (development)
Compositional Numeric Library
set_rep.h
1 
2 // Copyright John McFarlane 2018.
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_INTEGER_SET_REP_H)
8 #define CNL_IMPL_WIDE_INTEGER_SET_REP_H
9 
10 #include "../num_traits/digits.h"
11 #include "../num_traits/set_rep.h"
12 #include "../numbers/adopt_signedness.h"
13 #include "../wrapper/declaration.h"
14 #include "definition.h"
15 
16 #include <type_traits>
17 
19 namespace cnl {
20  template<typename NumberRep, int NumberTagDigits, typename NumberTagNarrowest, typename Rep>
21  struct set_rep<_impl::wrapper<NumberRep, wide_tag<NumberTagDigits, NumberTagNarrowest>>, Rep>
22  : std::type_identity<wide_integer<
23  NumberTagDigits, _impl::adopt_signedness_t<NumberTagNarrowest, Rep>>> {
24  };
25 }
26 
27 #endif // CNL_IMPL_WIDE_INTEGER_SET_REP_H
cnl
compositional numeric library
Definition: abort.h:15