7 #if !defined(CNL_IMPL_DUPLEX_INTEGER_COMPARISON_H)
8 #define CNL_IMPL_DUPLEX_INTEGER_COMPARISON_H
10 #include "../custom_operator/definition.h"
11 #include "../type_traits/common_type.h"
12 #include "definition.h"
13 #include "is_duplex_integer.h"
14 #include "numeric_limits.h"
20 template<_impl::comparison_op Operator,
typename Upper,
typename Lower>
21 struct custom_operator<
23 op_value<_impl::duplex_integer<Upper, Lower>>,
24 op_value<_impl::duplex_integer<Upper, Lower>>> {
25 [[nodiscard]] constexpr
auto operator()(
26 _impl::duplex_integer<Upper, Lower>
const& lhs,
27 _impl::duplex_integer<Upper, Lower>
const& rhs)
const ->
bool
30 return Operator{}(tuple(lhs.upper(), lhs.lower()), tuple(rhs.upper(), rhs.lower()));
34 template<_impl::comparison_op Operator,
typename Lhs,
typename Rhs>
35 requires(_impl::is_duplex_integer<Lhs>::value != _impl::is_duplex_integer<Rhs>::value)
struct custom_operator<Operator, op_value<Lhs>, op_value<Rhs>> {
36 [[nodiscard]] constexpr
auto operator()(Lhs
const& lhs, Rhs
const& rhs)
const ->
bool
38 using common_type = _impl::common_type_t<Lhs, Rhs>;
39 return custom_operator<Operator, op_value<common_type>, op_value<common_type>>{}(lhs, rhs);
44 #endif // CNL_IMPL_DUPLEX_INTEGER_COMPARISON_H