CNL  2.0.2 (development)
Compositional Numeric Library
scale.h
1 
2 // Copyright John McFarlane 2019.
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_WRAPPER_SCALE_H)
8 #define CNL_IMPL_WRAPPER_SCALE_H
9 
10 #include "../custom_operator/native_tag.h"
11 #include "../num_traits/scale.h"
12 #include "definition.h"
13 #include "digits.h"
14 #include "operators.h"
15 
17 namespace cnl {
18  template<int Digits, int Radix, typename Rep>
19  struct scale<Digits, Radix, _impl::wrapper<Rep>> {
20  private:
21  using value_type = _impl::wrapper<Rep>;
22 
23  public:
24  [[nodiscard]] constexpr auto operator()(value_type const& s) const
25  {
26  return _impl::from_rep<value_type>(_impl::scale<Digits, Radix>(_impl::to_rep(s)));
27  }
28  };
29 }
30 
31 #endif // CNL_IMPL_WRAPPER_SCALE_H
cnl
compositional numeric library
Definition: abort.h:15