CNL  2.0.2 (development)
Compositional Numeric Library
set_signedness.h
1 
2 // Copyright John McFarlane 2021.
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_NUMBERS_SET_SIGNEDNESS_H)
8 #define CNL_IMPL_NUMBERS_SET_SIGNEDNESS_H
9 
10 #include "../config.h"
11 #include "../cstdint/types.h"
12 
13 #include <concepts>
14 #include <type_traits>
15 
17 namespace cnl::numbers {
18  template<class T, bool IsSigned>
19  struct set_signedness;
20 
21  template<typename T>
22  requires(std::is_integral_v<T>) struct set_signedness<T, false>
23  : std::make_unsigned<T> {
24  };
25  template<typename T>
26  requires(std::is_integral_v<T>) struct set_signedness<T, true>
27  : std::make_signed<T> {
28  };
29 
30  template<class T, bool IsSigned>
31  using set_signedness_t = typename set_signedness<T, IsSigned>::type;
32 }
33 
34 #endif // CNL_IMPL_NUMBERS_SET_SIGNEDNESS_H
std::make_signed
cnl::numbers
compositional numeric library, numbers header/namespace
Definition: numbers.h:16
std::make_unsigned