CNL  2.0.2 (development)
Compositional Numeric Library
inc_dec_operator.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_SCALED_INC_DEC_OPERATOR_H)
8 #define CNL_IMPL_SCALED_INC_DEC_OPERATOR_H
9 
10 #include "../custom_operator/definition.h"
11 #include "../power_value.h"
12 #include "power.h"
13 
15 namespace cnl {
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
19  {
20  return typename _impl::pre_to_assign<Operator>::type{}(
21  rhs, _impl::power_value<Rhs, -Exponent, Radix>());
22  }
23  };
24 
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
28  {
29  auto copy = lhs;
30  typename _impl::post_to_assign<Operator>::type{}(
31  lhs, _impl::power_value<Lhs, -Exponent, Radix>());
32  return copy;
33  }
34  };
35 }
36 
37 #endif // CNL_IMPL_SCALED_INC_DEC_OPERATOR_H
std::copy
T copy(T... args)
cnl
compositional numeric library
Definition: abort.h:15