CNL  2.0.2 (development)
Compositional Numeric Library
comparison.h
1 
2 // Copyright John McFarlane 2018.
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_DUPLEX_INTEGER_COMPARISON_H)
8 #define CNL_IMPL_DUPLEX_INTEGER_COMPARISON_H
9 
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"
15 
16 #include <tuple>
17 
19 namespace cnl {
20  template<_impl::comparison_op Operator, typename Upper, typename Lower>
21  struct custom_operator<
22  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
28  {
30  return Operator{}(tuple(lhs.upper(), lhs.lower()), tuple(rhs.upper(), rhs.lower()));
31  }
32  };
33 
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
37  {
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);
40  }
41  };
42 }
43 
44 #endif // CNL_IMPL_DUPLEX_INTEGER_COMPARISON_H
std::tuple
cnl
compositional numeric library
Definition: abort.h:15