7 #if !defined(CNL_IMPL_NUM_TRAITS_MAX_DIGITS_H)
8 #define CNL_IMPL_NUM_TRAITS_MAX_DIGITS_H
10 #include "../cstdint/types.h"
11 #include "../numbers/signedness.h"
13 #include "is_composite.h"
22 inline constexpr
int max_digits_fundamental = 0;
25 inline constexpr
auto max_digits_fundamental<true> = digits_v<intmax_t>;
28 inline constexpr
auto max_digits_fundamental<false> = digits_v<uintmax_t>;
32 inline constexpr
int max_digits = 0;
34 template<std::
integral T>
35 inline constexpr
auto max_digits<T> = max_digits_fundamental<numbers::signedness_v<T>>;
38 requires is_composite<T>::value
inline constexpr
auto max_digits<T> = max_digits<rep_of_t<T>>;
42 #endif // CNL_IMPL_NUM_TRAITS_MAX_DIGITS_H