CNL  2.0.2 (development)
Compositional Numeric Library
comparison_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_COMPARISON_OPERATOR_H)
8 #define CNL_IMPL_WRAPPER_COMPARISON_OPERATOR_H
9 
10 #include "../custom_operator/definition.h"
11 #include "../custom_operator/overloads.h"
12 #include "../num_traits/from_value.h"
13 #include "definition.h"
14 #include "operator_helpers.h"
15 
16 #include <concepts>
17 #include <type_traits>
18 
20 namespace cnl {
21  // higher OP wrapper
22  template<_impl::comparison_op Operator, std::floating_point Lhs, _impl::any_wrapper Rhs>
23  struct custom_operator<Operator, op_value<Lhs>, op_value<Rhs>> {
24  [[nodiscard]] constexpr auto operator()(Lhs const& lhs, Rhs const& rhs) const
25  {
26  return Operator()(lhs, static_cast<Lhs>(rhs));
27  }
28  };
29 
30  // wrapper OP higher
31  template<_impl::comparison_op Operator, _impl::any_wrapper Lhs, std::floating_point Rhs>
32  struct custom_operator<Operator, op_value<Lhs>, op_value<Rhs>> {
33  [[nodiscard]] constexpr auto operator()(Lhs const& lhs, Rhs const& rhs) const
34  {
35  return Operator()(static_cast<Rhs>(lhs), rhs);
36  }
37  };
38 
39  // lower OP wrapper
40  template<_impl::comparison_op Operator, class Lhs, class Rhs>
41  requires _impl::number_can_wrap<Rhs, Lhs>::value struct custom_operator<Operator, op_value<Lhs>, op_value<Rhs>> {
42  [[nodiscard]] constexpr auto operator()(Lhs const& lhs, Rhs const& rhs) const
43  {
44  return Operator()(_impl::from_value<Rhs>(lhs), rhs);
45  }
46  };
47 
48  // wrapper OP lower
49  template<_impl::comparison_op Operator, class Lhs, class Rhs>
50  requires _impl::number_can_wrap<Lhs, Rhs>::value struct custom_operator<Operator, op_value<Lhs>, op_value<Rhs>> {
51  [[nodiscard]] constexpr auto operator()(Lhs const& lhs, Rhs const& rhs) const
52  {
53  return Operator()(lhs, from_value<Lhs, Rhs>{}(rhs));
54  }
55  };
56 
57  template<_impl::comparison_op Operator, typename LhsRep, typename RhsRep, tag Tag>
58  struct custom_operator<Operator, op_value<_impl::wrapper<LhsRep, Tag>>, op_value<_impl::wrapper<RhsRep, Tag>>> {
59  [[nodiscard]] constexpr auto operator()(
60  _impl::wrapper<LhsRep, Tag> const& lhs, _impl::wrapper<RhsRep, Tag> const& rhs) const
61  {
62  return Operator()(_impl::to_rep(lhs), _impl::to_rep(rhs));
63  }
64  };
65 }
66 
67 #endif // CNL_IMPL_WRAPPER_COMPARISON_OPERATOR_H
cnl
compositional numeric library
Definition: abort.h:15