CNL  2.0.2 (development)
Compositional Numeric Library
shift_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_SHIFT_OPERATOR_H)
8 #define CNL_IMPL_WRAPPER_SHIFT_OPERATOR_H
9 
10 #include "../custom_operator/native_tag.h"
11 #include "from_rep.h"
12 #include "is_wrapper.h"
13 #include "operator_helpers.h"
14 #include "tag_of.h"
15 #include "to_rep.h"
16 
18 namespace cnl {
19  // non-wrapper << wrapper
20  // includes derived classes
21  template<_impl::shift_op Operator, class Lhs, _impl::any_wrapper Rhs>
22  requires(!_impl::is_wrapper<Lhs>) struct custom_operator<Operator, op_value<Lhs>, op_value<Rhs>> {
23  [[nodiscard]] constexpr auto operator()(Lhs const& lhs, Rhs const& rhs) const
24  {
25  return Operator()(lhs, _impl::rep_of_t<Rhs>{_impl::to_rep(rhs)});
26  }
27  };
28 
29  // wrapper << non-wrapper
30  template<_impl::shift_op Operator, _impl::any_wrapper Lhs, class Rhs>
31  requires _impl::number_can_wrap<Lhs, Rhs>::value struct custom_operator<
32  Operator, op_value<Lhs>, op_value<Rhs>> {
33  [[nodiscard]] constexpr auto operator()(
34  Lhs const& lhs, Rhs const& rhs) const
35  {
36  return _impl::from_rep<Lhs>(
37  custom_operator<Operator, op_value<_impl::rep_of_t<Lhs>, _impl::tag_of_t<Lhs>>, op_value<Rhs>>{}(
38  _impl::to_rep(lhs), rhs));
39  }
40  };
41 
42  // wrapper<int, Foo> << wrapper<int, Foo>
43  // includes derived classes
44  template<_impl::shift_op Operator, typename LhsRep, tag LhsTag, _impl::any_wrapper Rhs>
45  struct custom_operator<
46  Operator, op_value<_impl::wrapper<LhsRep, LhsTag>>, op_value<Rhs>> {
47  [[nodiscard]] constexpr auto operator()(
48  _impl::wrapper<LhsRep, LhsTag> const& lhs, Rhs const& rhs) const
49  {
50  return _impl::from_rep<_impl::wrapper<LhsRep, LhsTag>>(
51  custom_operator<
52  Operator, op_value<LhsRep, LhsTag>, op_value<_impl::rep_of_t<Rhs>>>{}(
53  _impl::to_rep(lhs), _impl::to_rep(rhs)));
54  }
55  };
56 }
57 
58 #endif // CNL_IMPL_WRAPPER_SHIFT_OPERATOR_H
cnl
compositional numeric library
Definition: abort.h:15