CNL  2.0.2 (development)
Compositional Numeric Library
unary_operator.h
1 
2 // Copyright John McFarlane 2021.
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_UNARY_OPERATOR_H)
8 #define CNL_IMPL_SCALED_UNARY_OPERATOR_H
9 
10 #include "../custom_operator/definition.h"
11 #include "../custom_operator/op.h"
12 #include "power.h"
13 
15 namespace cnl {
16  template<_impl::unary_arithmetic_op Operator, typename Rep, int Exponent, int Radix>
17  struct custom_operator<
18  Operator, op_value<Rep, power<Exponent, Radix>>> {
19  [[nodiscard]] constexpr auto operator()(Rep const& rhs) const
20  {
21  return Operator{}(rhs);
22  }
23  };
24 }
25 
26 #endif // CNL_IMPL_SCALED_UNARY_OPERATOR_H
cnl
compositional numeric library
Definition: abort.h:15