CNL  2.0.2 (development)
Compositional Numeric Library
custom_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_WIDE_INTEGER_GENERIC_H)
8 #define CNL_IMPL_WIDE_INTEGER_GENERIC_H
9 
10 #include "../custom_operator/definition.h"
11 #include "../num_traits/to_rep.h"
12 #include "definition.h"
13 
14 #include <type_traits>
15 
17 namespace cnl {
18  template<
19  _impl::comparison_op Operator, int LhsDigits, typename LhsNarrowest, int RhsDigits,
20  typename RhsNarrowest>
21  requires(!std::is_same_v<
22  wide_integer<LhsDigits, LhsNarrowest>,
23  wide_integer<RhsDigits, RhsNarrowest>>) struct
24  custom_operator<
25  Operator,
26  op_value<wide_integer<LhsDigits, LhsNarrowest>>,
27  op_value<wide_integer<RhsDigits, RhsNarrowest>>> {
28  [[nodiscard]] constexpr auto operator()(
29  wide_integer<LhsDigits, LhsNarrowest> const& lhs,
30  wide_integer<RhsDigits, RhsNarrowest> const& rhs) const
31  {
32  return Operator()(_impl::to_rep(lhs), _impl::to_rep(rhs));
33  }
34  };
35 }
36 
37 #endif // CNL_IMPL_WIDE_INTEGER_GENERIC_H
cnl::wide_integer
_impl::wrapper< typename wide_tag< Digits, Narrowest >::rep, wide_tag< Digits, Narrowest > > wide_integer
An integer of limitless width.
Definition: definition.h:19
cnl
compositional numeric library
Definition: abort.h:15