7 #if !defined(CNL_IMPL_SCALED_INC_DEC_OPERATOR_H)
8 #define CNL_IMPL_SCALED_INC_DEC_OPERATOR_H
10 #include "../custom_operator/definition.h"
11 #include "../power_value.h"
16 template<_impl::prefix_op Operator,
typename Rhs,
int Exponent,
int Radix>
17 struct custom_operator<Operator, op_value<Rhs, power<Exponent, Radix>>> {
18 constexpr
auto operator()(Rhs& rhs)
const
20 return typename _impl::pre_to_assign<Operator>::type{}(
21 rhs, _impl::power_value<Rhs, -Exponent, Radix>());
25 template<_impl::postfix_op Operator,
typename Lhs,
int Exponent,
int Radix>
26 struct custom_operator<Operator, op_value<Lhs, power<Exponent, Radix>>> {
27 constexpr
auto operator()(Lhs& lhs)
const -> Lhs
30 typename _impl::post_to_assign<Operator>::type{}(
31 lhs, _impl::power_value<Lhs, -Exponent, Radix>());
37 #endif // CNL_IMPL_SCALED_INC_DEC_OPERATOR_H