CNL  2.0.2 (development)
Compositional Numeric Library
scale.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_SCALE_H)
8 #define CNL_IMPL_NUM_TRAITS_SCALE_H
9 
10 #include "../../integer.h"
11 #include "../power_value.h"
12 
13 namespace cnl {
14  template<int Digits, int Radix, class S>
15  struct scale;
16 
17  namespace _impl {
18  // fundamental integer-friendly cnl::scale algorithm
19  template<int Digits, int Radix, typename S>
20  struct default_scale;
21 
22  template<int Digits, int Radix, typename S>
23  requires(0 <= Digits) struct default_scale<Digits, Radix, S> {
24  [[nodiscard]] constexpr auto operator()(S const& s) const
25  {
26  return s * power_value<S, Digits, Radix>();
27  }
28  };
29 
30  // cnl::default_scale<-ve, cnl::constant<>>
31  template<int Digits, int Radix, typename S>
32  requires(Digits < 0) struct default_scale<Digits, Radix, S> {
33  [[nodiscard]] constexpr auto operator()(S const& s) const
34  {
35  return s / power_value<S, -Digits, Radix>();
36  }
37  };
38  }
39 
40  // cnl::scale<..., fundamental-integer>
41  template<int Digits, int Radix, integer S>
42  struct scale<Digits, Radix, S>
43  : _impl::default_scale<Digits, Radix, S> {
44  };
45 
46  namespace _impl {
47  // cnl::_impl::scale - convenience wrapper for cnl::scale
48  template<int Digits, int Radix = 2, class S>
49  [[nodiscard]] constexpr auto scale(S const& s)
50  {
51  return cnl::scale<Digits, Radix, S>{}(s);
52  }
53  }
54 }
55 
56 #endif // CNL_IMPL_NUM_TRAITS_SCALE_H
cnl
compositional numeric library
Definition: abort.h:15