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_WRAPPER_INC_DEC_OPERATOR_H)
8 #define CNL_IMPL_WRAPPER_INC_DEC_OPERATOR_H
9 
10 #include "../custom_operator/definition.h"
11 #include "../custom_operator/native_tag.h"
12 #include "definition.h"
13 #include "rep_of.h"
14 #include "to_rep.h"
15 
16 namespace cnl {
17  template<_impl::prefix_op Operator, _impl::any_wrapper Number>
18  struct custom_operator<Operator, op_value<Number>> {
19  constexpr auto& operator()(Number& rhs) const
20  {
21  custom_operator<Operator, op_value<_impl::rep_of_t<Number>, _impl::tag_of_t<Number>>>{}(
22  _impl::to_rep(rhs));
23  return rhs;
24  }
25  };
26 
27  template<_impl::postfix_op Operator, _impl::any_wrapper Number>
28  struct custom_operator<Operator, op_value<Number, _impl::native_tag>> {
29  constexpr auto operator()(Number& lhs) const
30  {
31  return _impl::from_rep<Number>(
32  custom_operator<Operator, op_value<_impl::rep_of_t<Number>, _impl::tag_of_t<Number>>>{}(
33  _impl::to_rep(lhs)));
34  }
35  };
36 }
37 
38 #endif // CNL_IMPL_WRAPPER_INC_DEC_OPERATOR_H
cnl
compositional numeric library
Definition: abort.h:15