CNL  2.0.2 (development)
Compositional Numeric Library
fixed_width_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_FIXED_WIDTH_SCALE_H)
8 #define CNL_IMPL_NUM_TRAITS_FIXED_WIDTH_SCALE_H
9 
10 #include "digits.h"
11 #include "from_rep.h"
12 #include "is_composite.h"
13 #include "scale.h"
14 #include "to_rep.h"
15 
16 namespace cnl {
17  // returns a scaled value of the same type
18  template<int Digits, int Radix, class Scalar>
19  struct fixed_width_scale;
20 
21  template<int Digits, int Radix, typename S>
22  requires(!is_composite<S>::value) struct fixed_width_scale<Digits, Radix, S> {
23  [[nodiscard]] constexpr auto operator()(S const& s) const
24  {
25  static_assert(
26  Radix != 2 || digits_v<S> > -Digits,
27  "this operation will flush the given value");
28 
29  return static_cast<S>(scale<Digits, Radix, S>()(s));
30  }
31  };
32 
33  namespace _impl {
34  template<int Digits, int Radix = 2, class S>
35  [[nodiscard]] constexpr auto fixed_width_scale(S const& s)
36  {
37  return cnl::fixed_width_scale<Digits, Radix, S>()(s);
38  }
39  }
40 
41  template<int Digits, int Radix, typename Composite>
42  requires is_composite_v<Composite>
43  struct fixed_width_scale<
44  Digits, Radix, Composite> {
45  [[nodiscard]] constexpr auto operator()(Composite const& s) const
46  {
47  return _impl::from_rep<Composite>(
48  _impl::fixed_width_scale<Digits, Radix>(_impl::to_rep(s)));
49  }
50  };
51 }
52 
53 #endif // CNL_IMPL_NUM_TRAITS_FIXED_WIDTH_SCALE_H
cnl
compositional numeric library
Definition: abort.h:15