-
Notifications
You must be signed in to change notification settings - Fork 64
/
Copy pathnumeric.h
72 lines (57 loc) · 2.2 KB
/
numeric.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
// Copyright John McFarlane 2015 - 2017.
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file ../LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
/// \file cnl/numeric.h
/// \brief functions that might belong in the \verbatim<numeric>\endverbatim header
#if !defined(CNL_NUMERIC_H)
#define CNL_NUMERIC_H
#include "bit.h"
#include "_impl/num_traits/unwrap.h"
#include "_impl/used_digits.h"
#include <limits>
/// compositional numeric library
namespace cnl {
////////////////////////////////////////////////////////////////////////////////
// cnl::trailing_bits
namespace _numeric_impl {
template<class Integer, bool IsSigned>
struct trailing_bits {
[[nodiscard]] constexpr auto operator()(Integer const& n) const noexcept
{
return countr_zero(n);
}
};
template<class Integer>
struct trailing_bits<Integer, true> {
[[nodiscard]] constexpr auto operator()(Integer const& n) const noexcept
{
using unsigned_type = numbers::set_signedness_t<Integer, false>;
return countr_zero(static_cast<unsigned_type>(n));
}
};
}
// count of the right redundant trailing bits
template<class Integer>
[[nodiscard]] constexpr auto trailing_bits(Integer const& value)
{
return value ? _numeric_impl::trailing_bits<Integer, numbers::signedness_v<Integer>>()(value)
: 0;
}
////////////////////////////////////////////////////////////////////////////////
// cnl::used_digits
template<typename Integer>
[[nodiscard]] constexpr auto used_digits(
Integer const& value, int radix = std::numeric_limits<Integer>::radix)
{
return _impl::used_digits_signed<numbers::signedness_v<Integer>>{}(unwrap(value), radix);
}
////////////////////////////////////////////////////////////////////////////////
// cnl::leading_bits
template<class Integer>
[[nodiscard]] constexpr auto leading_bits(Integer const& value)
{
return digits_v<Integer> - cnl::used_digits(value);
}
}
#endif // CNL_NUMERIC_H