7 #if !defined(CNL_IMPL_WRAPPER_SCALE_H)
8 #define CNL_IMPL_WRAPPER_SCALE_H
10 #include "../custom_operator/native_tag.h"
11 #include "../num_traits/scale.h"
12 #include "definition.h"
14 #include "operators.h"
18 template<
int Digits,
int Radix,
typename Rep>
19 struct scale<Digits, Radix, _impl::wrapper<Rep>> {
21 using value_type = _impl::wrapper<Rep>;
24 [[nodiscard]] constexpr
auto operator()(value_type
const& s)
const
26 return _impl::from_rep<value_type>(_impl::scale<Digits, Radix>(_impl::to_rep(s)));
31 #endif // CNL_IMPL_WRAPPER_SCALE_H