7 #if !defined(CNL_IMPL_NUMBERS_SET_SIGNEDNESS_H)
8 #define CNL_IMPL_NUMBERS_SET_SIGNEDNESS_H
10 #include "../config.h"
11 #include "../cstdint/types.h"
14 #include <type_traits>
18 template<
class T,
bool IsSigned>
19 struct set_signedness;
22 requires(std::is_integral_v<T>)
struct set_signedness<T, false>
26 requires(std::is_integral_v<T>)
struct set_signedness<T, true>
30 template<
class T,
bool IsSigned>
31 using set_signedness_t =
typename set_signedness<T, IsSigned>::type;
34 #endif // CNL_IMPL_NUMBERS_SET_SIGNEDNESS_H