7 #if !defined(CNL_IMPL_WRAPPER_SHIFT_OPERATOR_H)
8 #define CNL_IMPL_WRAPPER_SHIFT_OPERATOR_H
10 #include "../custom_operator/native_tag.h"
12 #include "is_wrapper.h"
13 #include "operator_helpers.h"
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
25 return Operator()(lhs, _impl::rep_of_t<Rhs>{_impl::to_rep(rhs)});
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
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));
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
50 return _impl::from_rep<_impl::wrapper<LhsRep, LhsTag>>(
52 Operator, op_value<LhsRep, LhsTag>, op_value<_impl::rep_of_t<Rhs>>>{}(
53 _impl::to_rep(lhs), _impl::to_rep(rhs)));
58 #endif // CNL_IMPL_WRAPPER_SHIFT_OPERATOR_H