7 #if !defined(CNL_IMPL_WRAPPER_COMPARISON_OPERATOR_H)
8 #define CNL_IMPL_WRAPPER_COMPARISON_OPERATOR_H
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"
17 #include <type_traits>
22 template<_impl::comparison_op Operator, std::
floating_po
int 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
26 return Operator()(lhs,
static_cast<Lhs
>(rhs));
31 template<_impl::comparison_op Operator, _impl::any_wrapper Lhs, std::
floating_po
int Rhs>
32 struct custom_operator<Operator, op_value<Lhs>, op_value<Rhs>> {
33 [[nodiscard]] constexpr
auto operator()(Lhs
const& lhs, Rhs
const& rhs)
const
35 return Operator()(
static_cast<Rhs
>(lhs), rhs);
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
44 return Operator()(_impl::from_value<Rhs>(lhs), rhs);
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
53 return Operator()(lhs, from_value<Lhs, Rhs>{}(rhs));
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
62 return Operator()(_impl::to_rep(lhs), _impl::to_rep(rhs));
67 #endif // CNL_IMPL_WRAPPER_COMPARISON_OPERATOR_H