7 #if !defined(CNL_IMPL_WRAPPER_INC_DEC_OPERATOR_H)
8 #define CNL_IMPL_WRAPPER_INC_DEC_OPERATOR_H
10 #include "../custom_operator/definition.h"
11 #include "../custom_operator/native_tag.h"
12 #include "definition.h"
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
21 custom_operator<Operator, op_value<_impl::rep_of_t<Number>, _impl::tag_of_t<Number>>>{}(
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
31 return _impl::from_rep<Number>(
32 custom_operator<Operator, op_value<_impl::rep_of_t<Number>, _impl::tag_of_t<Number>>>{}(
38 #endif // CNL_IMPL_WRAPPER_INC_DEC_OPERATOR_H