CNL  2.0.2 (development)
Compositional Numeric Library
unary_arithmetic_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_UNARY_OPERATOR_H)
8 #define CNL_IMPL_WRAPPER_UNARY_OPERATOR_H
9 
10 #include "../config.h"
11 #include "../custom_operator/definition.h"
12 #include "../custom_operator/native_tag.h"
13 #include "../custom_operator/overloads.h"
14 #include "definition.h"
15 #include "from_rep.h"
16 #include "make_wrapper.h"
17 #include "to_rep.h"
18 
20 namespace cnl {
21  template<_impl::unary_arithmetic_op Operator, typename Rep, tag Tag>
22  struct custom_operator<Operator, op_value<_impl::wrapper<Rep, Tag>>> {
23  [[nodiscard]] constexpr auto operator()(_impl::wrapper<Rep, Tag> const& rhs) const
24  {
25  return _impl::from_rep<_impl::wrapper<Rep, Tag>>(
26  _impl::operate<Operator, Tag>{}(_impl::to_rep(rhs)));
27  }
28  };
29 }
30 
31 #endif // CNL_IMPL_WRAPPER_UNARY_OPERATOR_H
cnl
compositional numeric library
Definition: abort.h:15