CNL  2.0.2 (development)
Compositional Numeric Library
set_width.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 
9 
10 #if !defined(CNL_IMPL_NUM_TRAITS_SET_WIDTH_H)
11 #define CNL_IMPL_NUM_TRAITS_SET_WIDTH_H
12 
13 #include "../numbers/signedness.h"
14 #include "set_digits.h"
15 
16 namespace cnl {
17  namespace _impl {
18  template<class T, int Width>
19  struct set_width : set_digits<T, Width - numbers::signedness_v<T>> {
20  };
21 
22  template<class T, int Width>
23  using set_width_t = typename set_width<T, Width>::type;
24  }
25 }
26 
27 #endif // CNL_IMPL_NUM_TRAITS_SET_WIDTH_H
cnl
compositional numeric library
Definition: abort.h:15