CNL  2.0.2 (development)
Compositional Numeric Library
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 
9 
10 #if !defined(CNL_IMPL_NUM_TRAITS_DIGITS_H)
11 #define CNL_IMPL_NUM_TRAITS_DIGITS_H
12 
13 #include "../numbers/signedness.h"
14 #include "../used_digits.h"
15 #include "is_composite.h"
16 
17 #include <climits>
18 #include <concepts>
19 #include <type_traits>
20 
21 namespace cnl {
30  template<typename T>
31  inline constexpr int digits_v = 0;
32 
33  namespace _impl {
34  template<typename Integer>
35  inline constexpr auto fundamental_digits = CHAR_BIT * sizeof(Integer) - numbers::signedness_v<Integer>;
36  }
37 
38  template<std::integral Integer>
39  inline constexpr int digits_v<Integer> = _impl::fundamental_digits<Integer>;
40 
41  namespace _impl {
42  // cnl::_impl::fractional_digits
43  template<class T>
44  inline constexpr int fractional_digits = 0;
45 
46  // cnl::_impl::integer_digits
47  template<class T>
48  inline constexpr auto integer_digits = digits_v<T> - fractional_digits<T>;
49  }
50 }
51 
52 #endif // CNL_IMPL_NUM_TRAITS_DIGITS_H
cnl::digits_v
constexpr int digits_v
provide number of binary digits of the given type
Definition: digits.h:31
cnl
compositional numeric library
Definition: abort.h:15