CNL  2.0.2 (development)
Compositional Numeric Library
max_digits.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_NUM_TRAITS_MAX_DIGITS_H)
8 #define CNL_IMPL_NUM_TRAITS_MAX_DIGITS_H
9 
10 #include "../cstdint/types.h"
11 #include "../numbers/signedness.h"
12 #include "digits.h"
13 #include "is_composite.h"
14 #include "rep_of.h"
15 
16 #include <concepts>
17 
18 namespace cnl {
19  namespace _impl {
20  // max_digits_fundamental
21  template<bool Signed>
22  inline constexpr int max_digits_fundamental = 0;
23 
24  template<>
25  inline constexpr auto max_digits_fundamental<true> = digits_v<intmax_t>;
26 
27  template<>
28  inline constexpr auto max_digits_fundamental<false> = digits_v<uintmax_t>;
29 
30  // max_digits
31  template<typename T>
32  inline constexpr int max_digits = 0;
33 
34  template<std::integral T>
35  inline constexpr auto max_digits<T> = max_digits_fundamental<numbers::signedness_v<T>>;
36 
37  template<typename T>
38  requires is_composite<T>::value inline constexpr auto max_digits<T> = max_digits<rep_of_t<T>>;
39  }
40 }
41 
42 #endif // CNL_IMPL_NUM_TRAITS_MAX_DIGITS_H
cnl
compositional numeric library
Definition: abort.h:15