CNL  2.0.2 (development)
Compositional Numeric Library
set_width.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_DUPLEX_INTEGER_SET_WIDTH_H)
8 #define CNL_IMPL_DUPLEX_INTEGER_SET_WIDTH_H
9 
10 #include "../num_traits/set_width.h"
11 #include "declaration.h"
12 #include "narrowest_integer.h"
13 #include "rep_of.h"
14 
16 namespace cnl {
17  namespace _impl {
18  template<typename Upper, typename Lower, int Digits>
19  struct set_width<_impl::duplex_integer<Upper, Lower>, Digits> {
20  using word = _impl::rep_of_t<Upper>;
21  using type = typename _impl::narrowest_integer<
22  Digits + !numbers::signedness_v<word>, word>::type;
23  };
24  }
25 }
26 
27 #endif // CNL_IMPL_DUPLEX_INTEGER_SET_WIDTH_H
cnl
compositional numeric library
Definition: abort.h:15